Subversion Repositories aysalia

Compare Revisions

Regard whitespace Rev 14 → Rev 13

/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-05
; Revision 2018-12-01
; (C) 2018 Daniel Marschall, ViaThinkSoft
 
.model tiny
28,8 → 28,10
 
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 bx, 32 ; 32 paragraphs a 16 bytes = 512 bytes
mov al, 00h
mov bx, 50 ; 50 paragraphs a 16 byte = 800 byte
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-05
; Revision 2018-12-03
; (C) 2018 Daniel Marschall, ViaThinkSoft
 
.model small
187,7 → 187,9
; Reduce size of own application to give the called applications more space
; see https://stackoverflow.com/a/10067627
mov ah, 4Ah
mov bx, 100 ; 100 paragraphs a 16 bytes = 1600 bytes
mov al, 00h
mov bx, 100 ; 100 paragraphs a 16 byte = 1600 byte
; EXE size is 1188 byte
int 21h
 
menu: