Skip to content

Commit

Permalink
BOOTSYS V1.5
Browse files Browse the repository at this point in the history
minor correction of CRLF handling
  • Loading branch information
Dietrich-L committed Feb 20, 2024
1 parent 94b578a commit 9fc304d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 31 deletions.
Binary file modified Images/BOOT.SYS
Binary file not shown.
Binary file modified Images/CPM-65.IMG
Binary file not shown.
Binary file modified Images/WORKDISK.IMG
Binary file not shown.
24 changes: 0 additions & 24 deletions Images/diskdefs
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
# Apple II CPM-65 skew 0 Apple II DOS 3.3 skew
diskdef A2-CPM-65
seclen 256
tracks 35
sectrk 16
blocksize 512
extentsize 4096
maxdir 128
boottrk 2
os 2.2
end

#Junior Computer II CPM-65
diskdef JC-II
seclen 256
Expand All @@ -23,15 +11,3 @@ diskdef JC-II
os 2.2
end

# ELEKTOR Junior Computer CPM-65
diskdef JC
seclen 256
tracks 80
sectrk 16
blocksize 1024
maxdir 128
skew 0
boottrk 2
os 2.2
extentsize 8192
end
15 changes: 8 additions & 7 deletions System/BOOTSYS.ASM
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
;V1.2 08.12.23 debug version
;V1.3 09.01.24 FAT32 & FAT16 support
;V1.4 14.01.24 HEXOUT replaced by HEXDIG
Version = $14
;V1.5 20.02.24 error correction LF's removed, uses COUT
Version = $15

;Parameter

Expand Down Expand Up @@ -64,7 +65,7 @@ EOF = $1A
GETCHR = $E047 ;CIN
STROUT = $E083 ;string out adr in PSTR
HEXDIG = $E09A ;print HEX in A
PRTCHR = $E044 ;BOUT
PRTCHR = $E052 ;COUT
SD_RD_LBLK = $F462 ;load sector in LBA to (BLKBUF)

ROM_MONITOR = $E000 ;Monitor cold start
Expand Down Expand Up @@ -134,11 +135,11 @@ MINUS_2 DB $FE,$FF,$FF,$FF ;-2

;--- MESSAGES -----------------------------

BOOTM DB CR,LF,'CP/M-65 for JC-II Boot Image Loader V'
DB VERSION/16+$30,'.',VERSION*$1000/$1000+$30,CR,LF,CR,LF,EOT
ERRM DB CR,LF,'BOOT failed',CR,LF,EOT
ERR1M DB CR,LF,'no DIR or image found',CR,LF,EOT
SELM DB CR,LF,CR,LF,'select image: ',EOT
BOOTM DB CR,'CP/M-65 for JC-II Boot Image Loader V'
DB VERSION/16+$30,'.',VERSION*$1000/$1000+$30,CR,CR,EOT
ERRM DB CR,'BOOT failed',CR,EOT
ERR1M DB CR,'no DIR or image found',CR,EOT
SELM DB CR,CR,'select image: ',EOT

;--- Suboutines -----------------------------

Expand Down

0 comments on commit 9fc304d

Please sign in to comment.