Fixed dos version compilation

This commit is contained in:
teuf
2001-04-24 17:10:33 +00:00
parent 28e34e4244
commit 49816e69ee
2 changed files with 3 additions and 20 deletions

View File

@@ -197,7 +197,6 @@ NEWSYM init
call loadfile
call showinfo
.noloadfile
call UpdateDevices
call init65816
call initregr
@@ -4812,7 +4811,6 @@ NEWSYM showinfo
mov ah,9
call Output_Text
.nointerl
mov edx,.ret
mov ah,9
call Output_Text

View File

@@ -77,8 +77,6 @@ section .text
%ifndef __PRINTF__
%define __PRINTF__
EXTSYM printf
EXTSYM fflush
EXTSYM stdout
%endif
[section .data]
%%string: db %1, 0
@@ -96,10 +94,7 @@ push eax
mov eax, %%strformat
push eax
call printf
mov eax, [stdout]
push eax
call fflush
add esp, 20
add esp, 16
popad
%endmacro
@@ -110,8 +105,6 @@ popad
%ifndef __PRINTF__
%define __PRINTF__
EXTSYM printf
EXTSYM fflush
EXTSYM stdout
%endif
[section .data]
%%strformat: db '%s in %s line %u',13, 10,0
@@ -128,10 +121,7 @@ push eax
mov eax, %%strformat
push eax
call printf
mov eax, [stdout]
push eax
call fflush
add esp, 20
add esp, 16
popad
%endmacro
@@ -140,8 +130,6 @@ popad
%ifndef __PRINTF__
%define __PRINTF__
EXTSYM printf
EXTSYM fflush
EXTSYM stdout
%endif
[section .data]
%%strformat: db '%x in %s line %u',13, 10,0
@@ -158,9 +146,6 @@ push eax
mov eax, %%strformat
push eax
call printf
mov eax, [stdout]
push eax
call fflush
add esp, 20
add esp, 16
popad
%endmacro