summaryrefslogblamecommitdiff
path: root/Source/Kernel/DeviceManager/Time.ns.cpp
blob: 104db1d498a14db305d21b177e435508b60fd2fc (plain) (tree)


















                               
#include "Time.ns.h"

namespace Time {

Timer* timer;

void setTimer(Timer* t) {
	timer = t;
}

u32int uptime() {
	return timer->uptime();
}

u32int time() {
	return timer->time();
}

}