mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
Merge remote-tracking branch 'upstream/master'
removed .gitignore
This commit is contained in:
4
Source/Apps/.gitignore
vendored
4
Source/Apps/.gitignore
vendored
@@ -1,4 +0,0 @@
|
||||
*.COM
|
||||
*.lst
|
||||
*.hex
|
||||
*.com
|
||||
2
Source/BL/.gitignore
vendored
2
Source/BL/.gitignore
vendored
@@ -1,2 +0,0 @@
|
||||
*.bin
|
||||
*.lst
|
||||
@@ -1,8 +0,0 @@
|
||||
OBJECTS = bl.bin
|
||||
DEST = ../../Binary/Apps
|
||||
TOOLS =../../Tools
|
||||
|
||||
include $(TOOLS)/Makefile.inc
|
||||
|
||||
#%.COM: %.asm
|
||||
# $(TASM) $< $@
|
||||
6
Source/BPBIOS/.gitignore
vendored
6
Source/BPBIOS/.gitignore
vendored
@@ -1,6 +0,0 @@
|
||||
*.prn
|
||||
*.rel
|
||||
*.img
|
||||
bpsys.bak
|
||||
bpsys.dat
|
||||
def-ww.lib
|
||||
2
Source/BPBIOS/NZFCP13/.gitignore
vendored
2
Source/BPBIOS/NZFCP13/.gitignore
vendored
@@ -1,2 +0,0 @@
|
||||
*.lst
|
||||
*.rel
|
||||
2
Source/BPBIOS/Z34RCP11/.gitignore
vendored
2
Source/BPBIOS/Z34RCP11/.gitignore
vendored
@@ -1,2 +0,0 @@
|
||||
*.lst
|
||||
*.rel
|
||||
2
Source/CBIOS/.gitignore
vendored
2
Source/CBIOS/.gitignore
vendored
@@ -1,2 +0,0 @@
|
||||
*.bin
|
||||
*.lst
|
||||
4
Source/CPM22/.gitignore
vendored
4
Source/CPM22/.gitignore
vendored
@@ -1,4 +0,0 @@
|
||||
*.bin
|
||||
*.hex
|
||||
*.lst
|
||||
*.sys
|
||||
@@ -803,7 +803,7 @@ RESETDR:LD A,(CHGDRV) ; DRIVE CHANGE INDICATED?
|
||||
;**************************************************************
|
||||
;
|
||||
.IF MON
|
||||
MONITOR:RST $38
|
||||
MONITOR:RST 38H
|
||||
.ENDIF
|
||||
|
||||
;
|
||||
|
||||
11
Source/CPM3/.gitignore
vendored
11
Source/CPM3/.gitignore
vendored
@@ -1,11 +0,0 @@
|
||||
*.sym
|
||||
*.lst
|
||||
*.sys
|
||||
*.rel
|
||||
*.bin
|
||||
cpmldr.com
|
||||
gencpm.dat
|
||||
bios3.spr
|
||||
bnkbios3.spr
|
||||
options.lib
|
||||
zpmbios3.spr
|
||||
2
Source/Forth/.gitignore
vendored
2
Source/Forth/.gitignore
vendored
@@ -1,2 +0,0 @@
|
||||
*.bin
|
||||
*.sym
|
||||
8
Source/HBIOS/.gitignore
vendored
8
Source/HBIOS/.gitignore
vendored
@@ -1,8 +0,0 @@
|
||||
*.bin
|
||||
*.lst
|
||||
*.rom
|
||||
*.dat
|
||||
*.tmp
|
||||
build.inc
|
||||
cpm.sys
|
||||
zsys.sys
|
||||
@@ -17,6 +17,11 @@
|
||||
;
|
||||
#include "std.asm"
|
||||
|
||||
; *** HACK TO GET THIS TO BUILD UNDER UNA ***
|
||||
#IF (BIOS == BIOS_UNA)
|
||||
#INCLUDE "hbios.inc"
|
||||
#ENDIF
|
||||
|
||||
cr .equ 0dh
|
||||
lf .equ 0ah
|
||||
eos .equ 00h
|
||||
|
||||
@@ -29,6 +29,11 @@
|
||||
;
|
||||
#INCLUDE "std.asm"
|
||||
;
|
||||
; *** HACK TO GET THIS TO BUILD UNDER UNA ***
|
||||
#IF (BIOS == BIOS_UNA)
|
||||
#INCLUDE "hbios.inc"
|
||||
#ENDIF
|
||||
;
|
||||
; CUSTOMIZATION
|
||||
;
|
||||
ABBRERR .EQU FALSE ; Choose between long error message and abbreviated error messages.
|
||||
|
||||
@@ -316,6 +316,7 @@ MATD: LD B,A
|
||||
MATD1: CP 10 ; DO A RANGE CHECK
|
||||
JR NC,MATX ; NOT VALID, HANDLE IT BELOW
|
||||
;
|
||||
#IF (BIOS == BIOS_WBW)
|
||||
PUSH BC
|
||||
PUSH AF ; HOW MANY DISK
|
||||
LD B,BF_SYSGET ; DEVICES DO WE
|
||||
@@ -323,6 +324,9 @@ MATD1: CP 10 ; DO A RANGE CHECK
|
||||
RST 08 ; SYSTEM ?
|
||||
POP AF
|
||||
POP BC
|
||||
#ELSE
|
||||
LD E,9 ; HACK TO HANDLE UNA, NEED TO FIX
|
||||
#ENDIF
|
||||
; JR MATD2 ; IF MORE THEN 9 ; UNCOMMENT TO TEST DOUBLE CHAR ENTRY
|
||||
CP 10 ; THEN WE NEED TO GET
|
||||
JR NC,MATD2 ; ANOTHER CHARACTER
|
||||
@@ -441,7 +445,10 @@ MENU_N .EQU ((MENU_E - MENU_S) / MENU_V) ; NUMBER OF MENU ITEMS
|
||||
; SYSTEM REBOOT HANDLER
|
||||
;==================================================================================================
|
||||
;
|
||||
REBOOT: LD DE,STR_REBOOT ; POINT TO MESSAGE
|
||||
REBOOT:
|
||||
;
|
||||
#IF (BIOS == BIOS_WBW)
|
||||
LD DE,STR_REBOOT ; POINT TO MESSAGE
|
||||
CALL WRITESTR ; PRINT IT
|
||||
#IF (DSKYENABLE)
|
||||
LD HL,MSG_BOOT ; POINT TO BOOT MESSAGE
|
||||
@@ -450,6 +457,12 @@ REBOOT: LD DE,STR_REBOOT ; POINT TO MESSAGE
|
||||
LD A,BID_BOOT ; BOOT BANK
|
||||
LD HL,0 ; ADDRESS ZERO
|
||||
CALL HB_BNKCALL ; DOES NOT RETURN
|
||||
#ENDIF
|
||||
#IF (BIOS == BIOS_UNA)
|
||||
; UMMM... NEED TO DO SOMETHING HERE...
|
||||
LD DE,STR_INVALID ; SET ERROR STRING MESSAGE
|
||||
JP MENU ; AND RESTART MENU LOOP
|
||||
#ENDIF
|
||||
;
|
||||
;==================================================================================================
|
||||
; ROM IMAGE LOAD HANDLER
|
||||
|
||||
@@ -40,6 +40,11 @@ TBC_LOC .equ 0
|
||||
#else ; RomWBW
|
||||
#include "std.asm"
|
||||
#endif
|
||||
; *** HACK TO GET THIS TO BUILD UNDER UNA ***
|
||||
#IF (BIOS == BIOS_UNA)
|
||||
#INCLUDE "hbios.inc"
|
||||
#ENDIF
|
||||
|
||||
.org TBC_LOC
|
||||
start:
|
||||
ld sp,stack ; ** Cold Start **
|
||||
|
||||
4
Source/Images/.gitignore
vendored
4
Source/Images/.gitignore
vendored
@@ -1,4 +0,0 @@
|
||||
*.sys
|
||||
*.img
|
||||
blank144
|
||||
blankhd
|
||||
2
Source/Prop/Spin/.gitignore
vendored
2
Source/Prop/Spin/.gitignore
vendored
@@ -1,2 +0,0 @@
|
||||
*.list
|
||||
*.eeprom
|
||||
2
Source/ZCPR-DJ/.gitignore
vendored
2
Source/ZCPR-DJ/.gitignore
vendored
@@ -1,2 +0,0 @@
|
||||
*.rel
|
||||
*.bin
|
||||
3
Source/ZCPR/.gitignore
vendored
3
Source/ZCPR/.gitignore
vendored
@@ -1,3 +0,0 @@
|
||||
*.bin
|
||||
*.hex
|
||||
*.com
|
||||
19
Source/ZPM3/.gitignore
vendored
19
Source/ZPM3/.gitignore
vendored
@@ -1,19 +0,0 @@
|
||||
*.lst
|
||||
*.sym
|
||||
biosldr.rel
|
||||
bnkbios3.spr
|
||||
cpm3.sys
|
||||
gencpm.com
|
||||
gencpm.dat
|
||||
startzpm.com
|
||||
zccp.com
|
||||
zinstal.zpm
|
||||
zpmldr.com
|
||||
setz3.com
|
||||
clrhist.com
|
||||
autotog.com
|
||||
cpmldr.com
|
||||
biosldrc.rel
|
||||
biosldrd.rel
|
||||
loader.bin
|
||||
zpmldr.bin
|
||||
BIN
Source/ZPM3/autotog.com
Normal file
BIN
Source/ZPM3/autotog.com
Normal file
Binary file not shown.
BIN
Source/ZPM3/clrhist.com
Normal file
BIN
Source/ZPM3/clrhist.com
Normal file
Binary file not shown.
BIN
Source/ZPM3/setz3.com
Normal file
BIN
Source/ZPM3/setz3.com
Normal file
Binary file not shown.
BIN
Source/ZPM3/zinstal.zpm
Normal file
BIN
Source/ZPM3/zinstal.zpm
Normal file
Binary file not shown.
6
Source/ZSDOS/.gitignore
vendored
6
Source/ZSDOS/.gitignore
vendored
@@ -1,6 +0,0 @@
|
||||
*.bin
|
||||
*.rel
|
||||
*.prn
|
||||
*.sym
|
||||
*.sys
|
||||
*.lst
|
||||
Reference in New Issue
Block a user