diff options
author | Alexis211 <alexis211@gmail.com> | 2010-02-05 21:35:38 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2010-02-05 21:35:38 +0100 |
commit | 3558f18daf50281ee1cd68cca96cd967dbac04ba (patch) | |
tree | cbe73621cdd2f481ed6f985aeb532ca1f7a7ad77 /src/grapes/test/main.c | |
parent | 893244c8b5272df86da5d333332eec26ae8f15f2 (diff) | |
download | TCE-3558f18daf50281ee1cd68cca96cd967dbac04ba.tar.gz TCE-3558f18daf50281ee1cd68cca96cd967dbac04ba.zip |
Everything seems to work : loading a module that displays a message.
Diffstat (limited to 'src/grapes/test/main.c')
-rw-r--r-- | src/grapes/test/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grapes/test/main.c b/src/grapes/test/main.c index d10ad35..0413889 100644 --- a/src/grapes/test/main.c +++ b/src/grapes/test/main.c @@ -4,5 +4,5 @@ void printk(char *s) { void start() { printk("Hi world !"); - asm volatile("int $64" : : "a"(0)); + asm volatile("int $64" : : "a"(3), "b"(0)); } |