summaryrefslogtreecommitdiff
path: root/src/grapes/test/main.c
blob: d10ad351c95bd20abea8213c25067615bee15b13 (plain) (blame)
1
2
3
4
5
6
7
8
void printk(char *s) {
	asm volatile("int $64" : : "a"(4), "b"(s));
}

void start() {
	printk("Hi world !");
	asm volatile("int $64" : : "a"(0));
}