-
Notifications
You must be signed in to change notification settings - Fork 1
/
disk.asm
155 lines (138 loc) · 3.84 KB
/
disk.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
; ----------------------------------------------------------------------------
;
; Software emulator of the 8080 CPU for the MEGA65, intended for CP/M or such.
; Please read comments throughout this source for more information.
;
; Copyright (C)2017,2024 LGB (Gábor Lénárt) <[email protected]>
;
; ----------------------------------------------------------------------------
;
; This program is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation; either version 3 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program. If not, see <http://www.gnu.org/licenses/>.
;
; Please note: this is *NOT* a Z80 emulator, but a 8080. Still, I
; prefer the Z80 style assembly syntax over 8080, so don't be
; surpised.
;
; ----------------------------------------------------------------------------
.INCLUDE "mega65.inc"
.INCLUDE "emu.inc"
.INCLUDE "console.inc"
.ZEROPAGE
.EXPORTZP cpm_dma
.EXPORTZP disk_sector
.EXPORTZP disk_track
cpm_dma: .RES 4 ; 4 bytes, as we may use it with 32 bit addressing
disk_sector: .RES 2
disk_track: .RES 2
.CODE
; --------------------------------------------------------
; BIOS_READ: Read sector from disk
; Input: -
; Output: A = opresult: 0=OK, 1=ERROR
; --------------------------------------------------------
.EXPORT disk_read
.PROC disk_read
DEBUG_READ = 0
.IF DEBUG_READ = 1
WRISTR {"[READ "}
LDA disk_track+1
JSR write_hex_byte
LDA disk_track
JSR write_hex_byte
LDA #'/'
JSR write_char
LDA disk_sector+1
JSR write_hex_byte
LDA disk_sector
JSR write_hex_byte
WRISTR {"->"}
.ENDIF
; TODO: now a fake stuff: just fill the DMA area with constant value and report OK
LDA cpm_dma+1
STA caddr+1
.IF DEBUG_READ = 1
JSR write_hex_byte
.ENDIF
LDA cpm_dma
STA caddr
.IF DEBUG_READ = 1
JSR write_hex_byte
.ENDIF
; Conv
JSR geo2byteoffset
BCS error
STY aaddr+2
STX aaddr+1
STA aaddr
.IF DEBUG_READ = 1
WRISTR {"<-"}
LDA aaddr+2
JSR write_hex_byte
LDA aaddr+1
JSR write_hex_byte
LDA aaddr
JSR write_hex_byte
LDA #']'
JSR write_char
.ENDIF
; DMA time!
STA $D707 ; trigger in-line DMA
.BYTE $A,$80,$80,0 ; enhanced mode opts
.BYTE 0 ; DMA command: copy and not chained
.WORD 128 ; DMA length: 128 for the CP/M sector size
aaddr: .WORD 0 ; source addr, in case of "fill" the low byte is the byte to fill with
.BYTE 0 ; source bank + other info
caddr: .WORD 0 ; target addr
.BYTE I8080_BANK ; target bank + other info
.WORD 0 ; modulo: not used
LDA #0 ; no error (FIXME: this is bad, we must check track/sector)
RTS
error:
LDA #1
RTS
.ENDPROC
; --------------------------------------------------------
; BIOS_WRITE: Write sector to disk
; Input: C = deblocking info
; 0 = normal sector write
; 1 = write to directory sector
; 2 = write to the first sector of a new data block
; Output: A = opresult: 0=OK, 1=ERROR
; --------------------------------------------------------
.EXPORT disk_write
.PROC disk_write
; No write is supported currently
LDA #1 ; return error
RTS
.ENDPROC
TOTAL_TRACKS = 16
.PROC geo2byteoffset
LDA disk_sector+1
ORA disk_track+1
BNE error ; track and sector numbers should be below 256
LDA disk_track
CMP #TOTAL_TRACKS
BCS error
LSR A
TAY
LDA disk_sector
ROR A
TAX
LDA #0
ROR A
RTS ; because of ROR on zero, carry will be cleared on RST, so we're good
error:
SEC ; carry set -> error!
RTS
.ENDPROC