diff options
author | John van Groningen | 2006-07-27 10:38:48 +0000 |
---|---|---|
committer | John van Groningen | 2006-07-27 10:38:48 +0000 |
commit | d3a02a9a401c15be773851c812ca91b66d7fea7e (patch) | |
tree | d5bb7c743075ad7add7cc56549596db27ca25b23 | |
parent | add batch file for building object files for 64 bit windows (diff) |
add startup jump for 64 bit windows
-rw-r--r-- | _startup0.asm | 12 |
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 |