Subversion Repositories aysalia

Compare Revisions

Regard whitespace Rev 13 → Rev 14

/trunk/Aysalia DOS/AyDos.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/trunk/Aysalia DOS/AyDos.mnu
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/trunk/Aysalia DOS/Source/AyDos.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/trunk/Aysalia DOS/Source/DOS Stub/DosStub.asm
1,7 → 1,7
 
; Aysalia DOS Launcher
; DOS Stub for AyDos.exe fat binary
; Revision 2018-12-01
; Revision 2018-12-05
; (C) 2018 Daniel Marschall, ViaThinkSoft
 
.model tiny
28,10 → 28,8
 
real_start:
; Reduce size of own application to give the called applications more space
; TODO: Is that required for a COM file?
mov ah, 4ah
mov al, 00h
mov bx, 50 ; 50 paragraphs a 16 byte = 800 byte
mov bx, 32 ; 32 paragraphs a 16 bytes = 512 bytes
int 21h
 
; Start Menu
/trunk/Aysalia DOS/Source/DOS Stub/DosStub.com
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/trunk/Aysalia DOS/Source/Menu/AyDos.mnu
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/trunk/Aysalia DOS/Source/Menu/AyDosMnu.asm
1,7 → 1,7
 
; Aysalia DOS Launcher
; Launches aydos1.gam and aydos2.gam
; Revision 2018-12-03
; Revision 2018-12-05
; (C) 2018 Daniel Marschall, ViaThinkSoft
 
.model small
187,9 → 187,7
; Reduce size of own application to give the called applications more space
; see https://stackoverflow.com/a/10067627
mov ah, 4Ah
mov al, 00h
mov bx, 100 ; 100 paragraphs a 16 byte = 1600 byte
; EXE size is 1188 byte
mov bx, 100 ; 100 paragraphs a 16 bytes = 1600 bytes
int 21h
 
menu: