mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
463 B
19 lines
463 B
;
|
|
;==================================================================================================
|
|
; APPLICATION LOADER (COM FILE)
|
|
;
|
|
; CREATES A STANDARD CP/M COM APPLICATION FILE TO LOAD ROMWBW
|
|
; FROM A COMMAND PROMPT.
|
|
;==================================================================================================
|
|
;
|
|
#define MODE LM_COM
|
|
;
|
|
#INCLUDE "std.asm"
|
|
#INCLUDE "hbios.exp"
|
|
;
|
|
.ORG $100
|
|
JP START
|
|
;
|
|
#INCLUDE "loader.asm"
|
|
;
|
|
.END
|
|
|