diff options
author | Christian Cunningham <cc@localhost> | 2022-02-01 21:06:42 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-02-01 21:06:42 -0700 |
commit | f4f23afb28268570d0da7f70bda6d2bcf760f839 (patch) | |
tree | 022572aead04205faca0972ac7ce441c4cc675d4 /src | |
parent | 7d3884b5cfc282dbdfe5d9a22d8b2b343280b8af (diff) |
Added SYSCALL number
Diffstat (limited to 'src')
-rw-r--r-- | src/sys/core.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/sys/core.c b/src/sys/core.c index 83cd563..b29412f 100644 --- a/src/sys/core.c +++ b/src/sys/core.c @@ -60,10 +60,6 @@ void sysinit(void) // Start Scheduler init_scheduler(); - //// // Enable IRQ & FIQ - //// enableirq(); - //// enablefiq(); - add_thread(testlocal, 0, 0); add_thread(testlocal, 0, 1); add_thread(testlocal, 0, 1); @@ -74,7 +70,6 @@ void sysinit(void) void testlocal(void) { - draw_stacks(); } void testnew(void) |