summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_startup0.asm12
1 files changed, 12 insertions, 0 deletions
diff --git a/_startup0.asm b/_startup0.asm
new file mode 100644
index 0000000..3c88513
--- /dev/null
+++ b/_startup0.asm
@@ -0,0 +1,12 @@
+
+ _TEXT segment
+
+ public _mainCRTStartup
+ extrn clean_main:near
+
+_mainCRTStartup:
+ jmp clean_main
+
+_TEXT ends
+
+end