aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-01-03 20:10:44 -0800
committerChristian Cunningham <cc@localhost>2022-01-03 20:10:44 -0800
commit01af43f3bad5deb061237ebddc577511336de7d5 (patch)
treecbf9914c7b54ba92bc79dfbf79342a06c0ed0f4e /src
parent1b180d2f15e9b726e6e9dde5601f41fa48c1c044 (diff)
Removed example code
Diffstat (limited to 'src')
-rw-r--r--src/sys/core.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/sys/core.c b/src/sys/core.c
index 8d37a88..37cd6a5 100644
--- a/src/sys/core.c
+++ b/src/sys/core.c
@@ -50,10 +50,4 @@ void sysinit(void)
enablefiq();
// Start Scheduler
- unsigned long count1 = -5;
- struct Mutex* m = create_mutex(&count1);
- if (lock_mutex(m, SYS_PID) == 0) {
- uart_hex(*(unsigned long*)m->addr);
- release_mutex(m, SYS_PID);
- }
}