summaryrefslogtreecommitdiff
path: root/_startup0.asm
diff options
context:
space:
mode:
authorJohn van Groningen2006-07-27 10:38:48 +0000
committerJohn van Groningen2006-07-27 10:38:48 +0000
commitd3a02a9a401c15be773851c812ca91b66d7fea7e (patch)
treed5bb7c743075ad7add7cc56549596db27ca25b23 /_startup0.asm
parentadd batch file for building object files for 64 bit windows (diff)
add startup jump for 64 bit windows
Diffstat (limited to '_startup0.asm')
-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