From 97d3551106495fa18969e2690720b621ba5a9c0b Mon Sep 17 00:00:00 2001 From: Jake Mannens Date: Sun, 24 Jun 2018 02:27:22 +1000 Subject: Re-structured the source tree and modified makefiles accordingly. Hopefully further separation will help to keep the code readable and understandable. --- usrbin/lib.s | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 usrbin/lib.s (limited to 'usrbin/lib.s') diff --git a/usrbin/lib.s b/usrbin/lib.s new file mode 100644 index 0000000..ffe4f5f --- /dev/null +++ b/usrbin/lib.s @@ -0,0 +1,10 @@ +bits 32 + +extern main + +section .entry +init: + call main +.loop: + ; loop forever + jmp .loop -- cgit v1.3