Browse Source

Merge remote-tracking branch 'upstream/master'

removed .gitignore
pull/81/head
curt mayer 6 years ago
parent
commit
cdaf04eaed
  1. 4
      Binary/.gitignore
  2. 2
      Binary/Apps/.gitignore
  3. 2
      Binary/Apps/Tunes/.gitignore
  4. 4
      Source/Apps/.gitignore
  5. 2
      Source/BL/.gitignore
  6. 8
      Source/BL/Makefile
  7. 6
      Source/BPBIOS/.gitignore
  8. 2
      Source/BPBIOS/NZFCP13/.gitignore
  9. 2
      Source/BPBIOS/Z34RCP11/.gitignore
  10. 2
      Source/CBIOS/.gitignore
  11. 4
      Source/CPM22/.gitignore
  12. 2
      Source/CPM22/ccpb03.asm
  13. 11
      Source/CPM3/.gitignore
  14. 2
      Source/Forth/.gitignore
  15. 8
      Source/HBIOS/.gitignore
  16. 5
      Source/HBIOS/eastaegg.asm
  17. 5
      Source/HBIOS/nascom.asm
  18. 15
      Source/HBIOS/romldr.asm
  19. 5
      Source/HBIOS/tastybasic.asm
  20. 4
      Source/Images/.gitignore
  21. 2
      Source/Prop/Spin/.gitignore
  22. 2
      Source/ZCPR-DJ/.gitignore
  23. 3
      Source/ZCPR/.gitignore
  24. 19
      Source/ZPM3/.gitignore
  25. BIN
      Source/ZPM3/autotog.com
  26. BIN
      Source/ZPM3/clrhist.com
  27. BIN
      Source/ZPM3/setz3.com
  28. BIN
      Source/ZPM3/zinstal.zpm
  29. 6
      Source/ZSDOS/.gitignore
  30. 2
      Tools/.gitignore
  31. 8
      Tools/unix/cpmtools/.gitignore
  32. 2
      Tools/unix/uz80as/.gitignore
  33. 3
      Tools/unix/zx/.gitignore

4
Binary/.gitignore

@ -1,4 +0,0 @@
*.bin
*.eeprom
*.img
*.rom

2
Binary/Apps/.gitignore

@ -1,2 +0,0 @@
*.com
*.COM

2
Binary/Apps/Tunes/.gitignore

@ -1,2 +0,0 @@
*.pt*
*.mym

4
Source/Apps/.gitignore

@ -1,4 +0,0 @@
*.COM
*.lst
*.hex
*.com

2
Source/BL/.gitignore

@ -1,2 +0,0 @@
*.bin
*.lst

8
Source/BL/Makefile

@ -1,8 +0,0 @@
OBJECTS = bl.bin
DEST = ../../Binary/Apps
TOOLS =../../Tools
include $(TOOLS)/Makefile.inc
#%.COM: %.asm
# $(TASM) $< $@

6
Source/BPBIOS/.gitignore

@ -1,6 +0,0 @@
*.prn
*.rel
*.img
bpsys.bak
bpsys.dat
def-ww.lib

2
Source/BPBIOS/NZFCP13/.gitignore

@ -1,2 +0,0 @@
*.lst
*.rel

2
Source/BPBIOS/Z34RCP11/.gitignore

@ -1,2 +0,0 @@
*.lst
*.rel

2
Source/CBIOS/.gitignore

@ -1,2 +0,0 @@
*.bin
*.lst

4
Source/CPM22/.gitignore

@ -1,4 +0,0 @@
*.bin
*.hex
*.lst
*.sys

2
Source/CPM22/ccpb03.asm

@ -803,7 +803,7 @@ RESETDR:LD A,(CHGDRV) ; DRIVE CHANGE INDICATED?
;**************************************************************
;
.IF MON
MONITOR:RST $38
MONITOR:RST 38H
.ENDIF
;

11
Source/CPM3/.gitignore

@ -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

@ -1,2 +0,0 @@
*.bin
*.sym

8
Source/HBIOS/.gitignore

@ -1,8 +0,0 @@
*.bin
*.lst
*.rom
*.dat
*.tmp
build.inc
cpm.sys
zsys.sys

5
Source/HBIOS/eastaegg.asm

@ -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

5
Source/HBIOS/nascom.asm

@ -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.

15
Source/HBIOS/romldr.asm

@ -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

5
Source/HBIOS/tastybasic.asm

@ -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

@ -1,4 +0,0 @@
*.sys
*.img
blank144
blankhd

2
Source/Prop/Spin/.gitignore

@ -1,2 +0,0 @@
*.list
*.eeprom

2
Source/ZCPR-DJ/.gitignore

@ -1,2 +0,0 @@
*.rel
*.bin

3
Source/ZCPR/.gitignore

@ -1,3 +0,0 @@
*.bin
*.hex
*.com

19
Source/ZPM3/.gitignore

@ -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

Binary file not shown.

BIN
Source/ZPM3/clrhist.com

Binary file not shown.

BIN
Source/ZPM3/setz3.com

Binary file not shown.

BIN
Source/ZPM3/zinstal.zpm

Binary file not shown.

6
Source/ZSDOS/.gitignore

@ -1,6 +0,0 @@
*.bin
*.rel
*.prn
*.sym
*.sys
*.lst

2
Tools/.gitignore

@ -1,2 +0,0 @@
Darwin
Linux

8
Tools/unix/cpmtools/.gitignore

@ -1,8 +0,0 @@
cpmchattr
cpmchmod
cpmcp
cpmls
cpmrm
fsck.cpm
mkfs.cpm
*.o

2
Tools/unix/uz80as/.gitignore

@ -1,2 +0,0 @@
*.o
uz80as

3
Tools/unix/zx/.gitignore

@ -1,3 +0,0 @@
*.o
zx
config.h
Loading…
Cancel
Save