Small cleanup in *floppy.asm

This commit is contained in:
2025-09-24 00:39:18 +02:00
parent b5b679c4e2
commit 9daf8d7f97
2 changed files with 4 additions and 10 deletions

View File

@@ -1,9 +1,6 @@
BITS 16
CPU 8086
org 0xff00
; actual entry point of the program, must be present
start:
; sp and all segment registers need to be saved
@@ -32,4 +29,4 @@ mov [si], ax
pop es
pop bp
retf 8 ; 6 is 2x the number of parameters on the stack
retf 8 ; 2x the number of parameters on the stack

View File

@@ -1,9 +1,6 @@
BITS 16
CPU 8086
org 0xfc00
; actual entry point of the program, must be present
start:
; sp and all segment registers need to be saved
@@ -32,4 +29,4 @@ mov [si], ax
pop es
pop bp
retf 8 ; 6 is 2x the number of parameters on the stack
retf 8 ; 2x the number of parameters on the stack