Adding forgotten files
authorJohn Hodge <[email protected]>
Sat, 2 Apr 2011 17:21:42 +0000 (01:21 +0800)
committerJohn Hodge <[email protected]>
Sat, 2 Apr 2011 17:21:42 +0000 (01:21 +0800)
Modules/Network/RTL8139/Makefile [new file with mode: 0644]
Usermode/Libraries/crt0.o_src/crt0.x86_64.asm [new file with mode: 0644]

diff --git a/Modules/Network/RTL8139/Makefile b/Modules/Network/RTL8139/Makefile
new file mode 100644 (file)
index 0000000..1c7f3e9
--- /dev/null
@@ -0,0 +1,7 @@
+#
+#
+
+OBJ = rtl8139.o
+NAME = RTL8139
+
+-include ../Makefile.tpl
diff --git a/Usermode/Libraries/crt0.o_src/crt0.x86_64.asm b/Usermode/Libraries/crt0.o_src/crt0.x86_64.asm
new file mode 100644 (file)
index 0000000..56fa980
--- /dev/null
@@ -0,0 +1,19 @@
+;
+; Acess2
+; C Runtime 0
+; - crt0.asm
+
+[BITS 64]
+[section .text]
+
+
+[global _start]
+[global start]
+[extern main]
+[extern _exit]
+_start:
+start:
+       call main
+       push rax
+       call _exit
+       jmp $   ; This should never be reached

UCC git Repository :: git.ucc.asn.au