* prt0 startup code file for small model renamed to prt0s

git-svn-id: trunk@24809 -
This commit is contained in:
nickysn 2013-06-05 16:41:39 +00:00
parent c124283a36
commit e28852d07d
3 changed files with 3 additions and 3 deletions

2
.gitattributes vendored
View File

@ -8262,7 +8262,7 @@ rtl/msdos/crt.pp svneol=native#text/plain
rtl/msdos/dos.pp svneol=native#text/plain
rtl/msdos/msmouse.pp svneol=native#text/plain
rtl/msdos/ports.pp svneol=native#text/plain
rtl/msdos/prt0.asm svneol=native#text/plain
rtl/msdos/prt0s.asm svneol=native#text/plain
rtl/msdos/prt0st.asm svneol=native#text/plain
rtl/msdos/prt0t.asm svneol=native#text/plain
rtl/msdos/registers.inc svneol=native#text/plain

View File

@ -249,7 +249,7 @@ begin
if current_settings.x86memorymodel=mm_tiny then
LinkRes.Add('file ' + maybequoted(FindObjectFile('prt0t','',false)))
else
LinkRes.Add('file ' + maybequoted(FindObjectFile('prt0','',false)));
LinkRes.Add('file ' + maybequoted(FindObjectFile('prt0s','',false)));
while not ObjectFiles.Empty do
begin
s:=ObjectFiles.GetFirst;

View File

@ -1,3 +1,3 @@
; nasm -f obj -o prt0.o prt0.asm
; nasm -f obj -o prt0s.o prt0s.asm
%define __SMALL__
%include "prt0st.asm"