Skip to content

Commit 2e2d2be

Browse files
committed
Finalize v3.0.1
Cleanup release for v3.0
1 parent 77cc5d1 commit 2e2d2be

13 files changed

+11
-11
lines changed
Binary file not shown.

Diff for: Doc/RomWBW Applications.pdf

0 Bytes
Binary file not shown.

Diff for: Doc/RomWBW Architecture.pdf

4 Bytes
Binary file not shown.

Diff for: Doc/RomWBW Getting Started.pdf

2 Bytes
Binary file not shown.

Diff for: ReadMe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Z80/Z180 System Software
44

5-
Version 3.0
5+
Version 3.0.1
66
Monday 30 March 2020
77

88
Wayne Warthen <[email protected]>

Diff for: ReadMe.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ RomWBW
22

33
Z80/Z180 System Software
44

5-
Version 3.0
5+
Version 3.0.1
66
Monday 30 March 2020
77

88
Wayne Warthen [email protected]

Diff for: Source/CPM22/loader.asm

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ PR_SIG .DB $5A,$A5 ; SIGNATURE GOES HERE
207207
PR_WP .DB 0 ; (1) WRITE PROTECT BOOLEAN
208208
PR_UPDSEQ .DW 0 ; (2) PREFIX UPDATE SEQUENCE NUMBER (DEPRECATED?)
209209
PR_VER .DB RMJ,RMN,RUP,RTP ; (4) OS BUILD VERSION
210-
PR_LABEL .DB "Unlabeled Drive ","$" ; (17) DISK LABEL (EXACTLY 16 BYTES!!!)
210+
PR_LABEL .DB "Unlabeled$$$$$$$","$" ; (17) DISK LABEL (EXACTLY 16 BYTES!!!)
211211
.DW 0 ; (2) DEPRECATED
212212
PR_LDLOC .DW SYS_LOC ; (2) ADDRESS TO START LOADING SYSTEM
213213
PR_LDEND .DW SYS_END ; (2) ADDRESS TO STOP LOADING SYSTEM

Diff for: Source/CPM3/loader.asm

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ PR_SIG .DB $5A,$A5 ; SIGNATURE GOES HERE
207207
PR_WP .DB 0 ; (1) WRITE PROTECT BOOLEAN
208208
PR_UPDSEQ .DW 0 ; (2) PREFIX UPDATE SEQUENCE NUMBER (DEPRECATED?)
209209
PR_VER .DB RMJ,RMN,RUP,RTP ; (4) OS BUILD VERSION
210-
PR_LABEL .DB "Unlabeled Drive ","$" ; (17) DISK LABEL (EXACTLY 16 BYTES!!!)
210+
PR_LABEL .DB "Unlabeled$$$$$$$","$" ; (17) DISK LABEL (EXACTLY 16 BYTES!!!)
211211
.DW 0 ; (2) DEPRECATED
212212
PR_LDLOC .DW SYS_LOC ; (2) ADDRESS TO START LOADING SYSTEM
213213
PR_LDEND .DW SYS_END ; (2) ADDRESS TO STOP LOADING SYSTEM

Diff for: Source/Doc/Common.inc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
!def(ver)(3.0)
1+
!def(ver)(3.0.1)
22
!def(date)(!mdate)
33
!def(product)(RomWBW)
44
!def(author)(Wayne Warthen)

Diff for: Source/ZPM3/loader.asm

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ PR_SIG .DB $5A,$A5 ; SIGNATURE GOES HERE
207207
PR_WP .DB 0 ; (1) WRITE PROTECT BOOLEAN
208208
PR_UPDSEQ .DW 0 ; (2) PREFIX UPDATE SEQUENCE NUMBER (DEPRECATED?)
209209
PR_VER .DB RMJ,RMN,RUP,RTP ; (4) OS BUILD VERSION
210-
PR_LABEL .DB "Unlabeled Drive ","$" ; (17) DISK LABEL (EXACTLY 16 BYTES!!!)
210+
PR_LABEL .DB "Unlabeled$$$$$$$","$" ; (17) DISK LABEL (EXACTLY 16 BYTES!!!)
211211
.DW 0 ; (2) DEPRECATED
212212
PR_LDLOC .DW SYS_LOC ; (2) ADDRESS TO START LOADING SYSTEM
213213
PR_LDEND .DW SYS_END ; (2) ADDRESS TO STOP LOADING SYSTEM

Diff for: Source/ZSDOS/loader.asm

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ PR_SIG .DB $5A,$A5 ; SIGNATURE GOES HERE
207207
PR_WP .DB 0 ; (1) WRITE PROTECT BOOLEAN
208208
PR_UPDSEQ .DW 0 ; (2) PREFIX UPDATE SEQUENCE NUMBER (DEPRECATED?)
209209
PR_VER .DB RMJ,RMN,RUP,RTP ; (4) OS BUILD VERSION
210-
PR_LABEL .DB "Unlabeled Drive ","$" ; (17) DISK LABEL (EXACTLY 16 BYTES!!!)
210+
PR_LABEL .DB "Unlabeled$$$$$$$","$" ; (17) DISK LABEL (EXACTLY 16 BYTES!!!)
211211
.DW 0 ; (2) DEPRECATED
212212
PR_LDLOC .DW SYS_LOC ; (2) ADDRESS TO START LOADING SYSTEM
213213
PR_LDEND .DW SYS_END ; (2) ADDRESS TO STOP LOADING SYSTEM

Diff for: Source/ver.inc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#DEFINE RMJ 3
22
#DEFINE RMN 0
3-
#DEFINE RUP 0
3+
#DEFINE RUP 1
44
#DEFINE RTP 0
5-
#DEFINE BIOSVER "3.0"
5+
#DEFINE BIOSVER "3.0.1"

Diff for: Source/ver.lib

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
rmj equ 3
22
rmn equ 0
3-
rup equ 0
3+
rup equ 1
44
rtp equ 0
55
biosver macro
6-
db "3.0"
6+
db "3.0.1"
77
endm

0 commit comments

Comments
 (0)