mirror of
https://github.com/antoinevignau/source.git
synced 2026-04-21 22:18:13 +00:00
Our SCSI-2 Audio Driver
What we wrote to make audio hearable on a SCSI-2 CD-ROM drive ;-)
This commit is contained in:
+1951
File diff suppressed because it is too large
Load Diff
+191
@@ -0,0 +1,191 @@
|
||||
*
|
||||
* Playing with BCD
|
||||
*
|
||||
* (c) 2018, Brutal Deluxe Software
|
||||
*
|
||||
|
||||
xc
|
||||
xc
|
||||
mx %00
|
||||
org $1000
|
||||
lst off
|
||||
|
||||
*---
|
||||
|
||||
clc
|
||||
xce
|
||||
rep #$30
|
||||
|
||||
lda #$1000
|
||||
jsr BCD2HEX
|
||||
|
||||
lda #$9999
|
||||
jsr BCD2HEX
|
||||
|
||||
lda #$270f
|
||||
jsr HEX2BCD
|
||||
|
||||
sec
|
||||
xce
|
||||
sep #$30
|
||||
rts
|
||||
|
||||
*---
|
||||
|
||||
mx %00
|
||||
|
||||
BCD2HEX pha
|
||||
|
||||
* milliers
|
||||
|
||||
and #$f000
|
||||
lsr
|
||||
lsr
|
||||
lsr
|
||||
xba
|
||||
tax
|
||||
lda tblBM,x
|
||||
sta result
|
||||
|
||||
* centaines
|
||||
|
||||
lda 1,s
|
||||
and #$0f00
|
||||
asl
|
||||
xba
|
||||
tax
|
||||
lda tblBC,x
|
||||
clc
|
||||
adc result
|
||||
sta result
|
||||
|
||||
* dizaines
|
||||
|
||||
lda 1,s
|
||||
and #$00f0
|
||||
lsr
|
||||
lsr
|
||||
lsr
|
||||
tax
|
||||
lda tblBD,x
|
||||
clc
|
||||
adc result
|
||||
sta result
|
||||
|
||||
* unites
|
||||
|
||||
lda 1,s
|
||||
and #$000f
|
||||
asl
|
||||
tax
|
||||
lda tblBU,x
|
||||
clc
|
||||
adc result
|
||||
sta result
|
||||
|
||||
plx
|
||||
jmp printME
|
||||
|
||||
*--- BCD 2 HEX table
|
||||
|
||||
tblBM dw 0000,1000,2000,3000,4000,5000,6000,7000,8000,9000
|
||||
tblBC dw 0000,0100,0200,0300,0400,0500,0600,0700,0800,0900
|
||||
tblBD dw 0000,0010,0020,0030,0040,0050,0060,0070,0080,0090
|
||||
tblBU dw 0000,0001,0002,0003,0004,0005,0006,0007,0008,0009
|
||||
|
||||
*---
|
||||
|
||||
HEX2BCD pha
|
||||
|
||||
* Step 1
|
||||
|
||||
and #$f000
|
||||
lsr
|
||||
lsr
|
||||
lsr
|
||||
xba
|
||||
tax
|
||||
lda tblH1,x
|
||||
sta result
|
||||
|
||||
* Step 2
|
||||
|
||||
lda 1,s
|
||||
and #$0f00
|
||||
asl
|
||||
xba
|
||||
tax
|
||||
sed
|
||||
lda tblH2,x
|
||||
clc
|
||||
adc result
|
||||
sta result
|
||||
cld
|
||||
|
||||
* Step 3
|
||||
|
||||
lda 1,s
|
||||
and #$00f0
|
||||
lsr
|
||||
lsr
|
||||
lsr
|
||||
tax
|
||||
sed
|
||||
lda tblH3,x
|
||||
clc
|
||||
adc result
|
||||
sta result
|
||||
cld
|
||||
|
||||
* Step 4
|
||||
|
||||
lda 1,s
|
||||
and #$000f
|
||||
asl
|
||||
tax
|
||||
sed
|
||||
lda tblH4,x
|
||||
clc
|
||||
adc result
|
||||
sta result
|
||||
cld
|
||||
|
||||
exit plx
|
||||
jmp printME
|
||||
|
||||
*--- HEX 2 BCD table
|
||||
|
||||
tblH1 dw $0000,$4096,$8192
|
||||
tblH2 dw $0000,$0256,$0512,$0768,$1024,$1280,$1536,$1792
|
||||
dw $2048,$2304,$2560,$2816,$3072,$3328,$3584,$3840
|
||||
tblH3 dw $0000,$0016,$0032,$0048,$0064,$0080,$0096,$0112
|
||||
dw $0128,$0144,$0160,$0176,$0192,$0208,$0224,$0240
|
||||
tblH4 dw $0000,$0001,$0002,$0003,$0004,$0005,$0006,$0007
|
||||
dw $0008,$0009,$0010,$0011,$0012,$0013,$0014,$0015
|
||||
|
||||
|
||||
*---
|
||||
|
||||
printME sta result
|
||||
|
||||
sec
|
||||
xce
|
||||
sep #$30
|
||||
|
||||
lda result+1
|
||||
jsr $fdda
|
||||
lda result
|
||||
jsr $fdda
|
||||
|
||||
lda #$8d
|
||||
jsr $fded
|
||||
|
||||
clc
|
||||
xce
|
||||
rep #$30
|
||||
rts
|
||||
|
||||
*---
|
||||
|
||||
result ds 2
|
||||
|
||||
+2184
File diff suppressed because it is too large
Load Diff
+636
@@ -0,0 +1,636 @@
|
||||
*
|
||||
* GSCSI2
|
||||
* Test our new CD driver
|
||||
*
|
||||
* (c) 2018, Brutal Deluxe Software
|
||||
*
|
||||
|
||||
mx %00
|
||||
rel
|
||||
dsk GSCSI2.l
|
||||
lst off
|
||||
|
||||
*----------------------------
|
||||
|
||||
use 4/Locator.Macs
|
||||
use 4/Mem.Macs
|
||||
use 4/Misc.Macs
|
||||
use 4/Util.Macs
|
||||
|
||||
GSOS = $e100a8
|
||||
|
||||
dcREMOVE = $0004
|
||||
dcONLINE = $0010
|
||||
devCDROM = $0007
|
||||
|
||||
*----------------------------
|
||||
|
||||
*---------- Start up
|
||||
|
||||
phk
|
||||
plb
|
||||
|
||||
clc
|
||||
xce
|
||||
rep #$30
|
||||
|
||||
tdc
|
||||
sta myDP
|
||||
|
||||
_TLStartUp
|
||||
pha
|
||||
_MMStartUp
|
||||
pla
|
||||
sta appID
|
||||
ora #$0100
|
||||
sta myID
|
||||
|
||||
_MTStartUp
|
||||
|
||||
jsr playNOW
|
||||
jsr waitKEY
|
||||
|
||||
*---------- Shut down
|
||||
|
||||
_MTShutDown
|
||||
|
||||
PushWord myID
|
||||
_DisposeAll
|
||||
|
||||
PushWord appID
|
||||
_MMShutDown
|
||||
|
||||
_TLShutDown
|
||||
|
||||
jsl GSOS
|
||||
dw $2029
|
||||
adrl proQUIT
|
||||
|
||||
brk $bd ; because
|
||||
|
||||
*---
|
||||
|
||||
waitKEY ldal $e0bfff
|
||||
bpl waitKEY
|
||||
stal $e0c00f
|
||||
rts
|
||||
|
||||
|
||||
*----------------------------
|
||||
* 202c DInfo
|
||||
* 202d DStatus
|
||||
* 202e DControl
|
||||
* 202f DRead
|
||||
* 2030 DWrite
|
||||
* 2036 DRename
|
||||
|
||||
playNOW
|
||||
lda #proQUIT
|
||||
stal $300
|
||||
lda #^proQUIT
|
||||
stal $302
|
||||
|
||||
lda #1
|
||||
sta proDINFO+2
|
||||
|
||||
]lp jsl GSOS
|
||||
dw $202c
|
||||
adrl proDINFO
|
||||
bcc found
|
||||
|
||||
cmp #$0011 ; no more devices
|
||||
bne loop
|
||||
rts ; none, we exit
|
||||
|
||||
loop inc proDINFO+2
|
||||
bra ]lp
|
||||
|
||||
*----------
|
||||
|
||||
found lda proDINFO+8
|
||||
and #dcREMOVE
|
||||
beq loop
|
||||
|
||||
lda proDINFO+20
|
||||
cmp #devCDROM
|
||||
bne loop
|
||||
|
||||
*--- We have our CDROM
|
||||
|
||||
lda proDINFO+2
|
||||
sta proREADTOC+2
|
||||
sta proSUB+2
|
||||
sta proHEADER+2 ; for data cd only
|
||||
sta proPLAY10+2
|
||||
sta proPLAY12+2
|
||||
sta proPLAYMSF+2
|
||||
sta proPLAYTR10+2
|
||||
sta proPLAYTR12+2
|
||||
sta proCONTROL+2
|
||||
sta proPAUSE+2
|
||||
sta proRESUME+2
|
||||
|
||||
* READ TOC 43
|
||||
|
||||
jsl GSOS
|
||||
dw $202d
|
||||
adrl proREADTOC
|
||||
sta errCODE
|
||||
|
||||
* READ SUB CHANNEL 42
|
||||
|
||||
jsl GSOS
|
||||
dw $202d
|
||||
adrl proSUB
|
||||
sta errCODE1
|
||||
|
||||
* READ HEADER 44
|
||||
|
||||
* jsl GSOS
|
||||
* dw $202d
|
||||
* adrl proHEADER
|
||||
* sta errCODE2
|
||||
|
||||
* PLAY AUDIO(10) 45
|
||||
|
||||
* jsl GSOS
|
||||
* dw $202e
|
||||
* adrl proPLAY10
|
||||
* sta errCODE3
|
||||
* jsr waitKEY
|
||||
|
||||
* PLAY AUDIO(12) A5
|
||||
|
||||
* jsl GSOS
|
||||
* dw $202e
|
||||
* adrl proPLAY12
|
||||
* sta errCODE4
|
||||
* jsr waitKEY
|
||||
|
||||
* PLAY AUDIO MSF 47
|
||||
|
||||
* jsl GSOS
|
||||
* dw $202e
|
||||
* adrl proPLAYMSF
|
||||
* sta errCODE5
|
||||
* jsr waitKEY
|
||||
|
||||
* PLAY TRACK RELATIVE(10) 49
|
||||
|
||||
jsl GSOS
|
||||
dw $202e
|
||||
adrl proPLAYTR10
|
||||
sta errCODE6
|
||||
jsr waitKEY
|
||||
|
||||
* PLAY TRACK RELATIVE(12) A9
|
||||
|
||||
jsl GSOS
|
||||
dw $202e
|
||||
adrl proPLAYTR12
|
||||
sta errCODE7
|
||||
jsr waitKEY
|
||||
|
||||
* PLAY AUDIO TRACK INDEX 48
|
||||
|
||||
jsl GSOS
|
||||
dw $202e
|
||||
adrl proCONTROL
|
||||
sta errCODE9
|
||||
|
||||
* PAUSE RESUME 4B
|
||||
|
||||
* jsr waitKEY
|
||||
|
||||
* jsl GSOS
|
||||
* dw $202e
|
||||
* adrl proPAUSE
|
||||
* sta errCODE10
|
||||
|
||||
* jsr waitKEY
|
||||
|
||||
* jsl GSOS
|
||||
* dw $202e
|
||||
* adrl proRESUME
|
||||
* sta errCODE11
|
||||
|
||||
rts
|
||||
|
||||
*----------------------------
|
||||
|
||||
*---------- Program
|
||||
|
||||
myDP ds 2
|
||||
appID ds 2
|
||||
myID ds 2
|
||||
|
||||
*---------- GS/OS
|
||||
|
||||
asc "proQUIT"
|
||||
|
||||
proQUIT dw 2 ; pcount
|
||||
ds 4 ; pathname
|
||||
ds 2 ; flags
|
||||
|
||||
asc "errorCODE"
|
||||
|
||||
errCODE ds 2
|
||||
errCODE1 ds 2
|
||||
errCODE2 ds 2
|
||||
errCODE3 ds 2
|
||||
errCODE4 ds 2
|
||||
errCODE5 ds 2
|
||||
errCODE6 ds 2
|
||||
errCODE7 ds 2
|
||||
errCODE8 ds 2
|
||||
errCODE9 ds 2
|
||||
errCODE10 ds 2
|
||||
errCODE11 ds 2
|
||||
|
||||
asc "proDINFO"
|
||||
|
||||
proDINFO dw 8 ; Parms for DInfo
|
||||
ds 2 ; 02 device num
|
||||
adrl devINFO ; 04 device name
|
||||
ds 2 ; 08 characteristics
|
||||
ds 4 ; 0A total blocks
|
||||
ds 2 ; 0E slot number
|
||||
ds 2 ; 10 unit number
|
||||
ds 2 ; 12 version
|
||||
ds 2 ; 14 device id
|
||||
|
||||
asc "devINFO"
|
||||
|
||||
devINFO dw $0032 ; buffer size
|
||||
devNAMEopen db $00 ; length
|
||||
devNAMEopen1 db $00
|
||||
devNAMEopen2 ds $30 ; data
|
||||
|
||||
asc "proDSTATUS"
|
||||
|
||||
proDSTATUS dw 5 ; 00 pcount
|
||||
ds 2 ; 02 device num
|
||||
ds 2 ; 04 status code
|
||||
adrl devSTATUS ; 06 status list
|
||||
ds 4 ; 0A request count
|
||||
ds 4 ; 0E transfer count
|
||||
|
||||
asc "devSTATUS"
|
||||
|
||||
devSTATUS ds 8
|
||||
|
||||
*---
|
||||
|
||||
asc "proHEADER"
|
||||
|
||||
proHEADER dw 5 ; 00 pcount
|
||||
ds 2 ; 02 device num
|
||||
dw $8044 ; 04 status code
|
||||
adrl headerLIST ; 06 status list
|
||||
adrl 1024 ; 0A request count
|
||||
ds 4 ; 0E transfer count
|
||||
|
||||
asc "headerLIST"
|
||||
|
||||
headerLIST ds 2 ; 00
|
||||
hex 44 ; 0
|
||||
hex 00 ; 1
|
||||
hex 00 ; 2
|
||||
hex 00 ; 3
|
||||
hex 00 ; 4
|
||||
hex 00 ; 5
|
||||
hex 00 ; 6
|
||||
hex 04 ; 7
|
||||
hex 00 ; 8
|
||||
hex 00 ; 9
|
||||
hex 00 ; A
|
||||
hex 00 ; B
|
||||
|
||||
adrl headerBUFF ; 04
|
||||
headerBUFF ds 1024
|
||||
ds 8
|
||||
|
||||
*---
|
||||
|
||||
asc "proSUB"
|
||||
|
||||
proSUB dw 5 ; 00 pcount
|
||||
ds 2 ; 02 device num
|
||||
dw $8042 ; 04 status code
|
||||
adrl subLIST ; 06 status list
|
||||
adrl 1024 ; 0A request count
|
||||
ds 4 ; 0E transfer count
|
||||
|
||||
asc "subLIST"
|
||||
|
||||
subLIST ds 2 ; 00
|
||||
hex 42 ; 0
|
||||
hex 00 ; 1
|
||||
hex 40 ; 2
|
||||
hex 01 ; 3
|
||||
hex 00 ; 4
|
||||
hex 00 ; 5
|
||||
hex 00 ; 6
|
||||
hex 04 ; 7
|
||||
hex 00 ; 8
|
||||
hex 00 ; 9
|
||||
hex 00 ; A
|
||||
hex 00 ; B
|
||||
|
||||
adrl subBUFF ; 04
|
||||
subBUFF ds 1024
|
||||
ds 8
|
||||
|
||||
*--- PAUSE
|
||||
|
||||
asc "proPAUSE"
|
||||
|
||||
proPAUSE dw 5 ; 00 pcount
|
||||
ds 2 ; 02 device num
|
||||
dw $804b ; 04 status code
|
||||
adrl pauseLIST ; 06 status list
|
||||
ds 4 ; 0A request count
|
||||
ds 4 ; 0E transfer count
|
||||
|
||||
asc "pauseLIST"
|
||||
|
||||
pauseLIST ds 2 ; 00
|
||||
hex 4b ; 0
|
||||
hex 00 ; 1
|
||||
hex 00 ; 2
|
||||
hex 00 ; 3
|
||||
hex 00 ; 4
|
||||
hex 00 ; 5
|
||||
hex 00 ; 6
|
||||
hex 00 ; 7
|
||||
hex 00 ; 8
|
||||
hex 00 ; 9
|
||||
hex 00 ; A
|
||||
hex 00 ; B
|
||||
|
||||
adrl pauseBUFF ; 04
|
||||
pauseBUFF ds 1024
|
||||
ds 8
|
||||
*---
|
||||
|
||||
asc "proRESUME"
|
||||
|
||||
proRESUME dw 5 ; 00 pcount
|
||||
ds 2 ; 02 device num
|
||||
dw $804b ; 04 status code
|
||||
adrl resumeLIST ; 06 status list
|
||||
ds 4 ; 0A request count
|
||||
ds 4 ; 0E transfer count
|
||||
|
||||
asc "resumeLIST"
|
||||
|
||||
resumeLIST ds 2 ; 00
|
||||
hex 4b ; 0
|
||||
hex 00 ; 1
|
||||
hex 00 ; 2
|
||||
hex 00 ; 3
|
||||
hex 00 ; 4
|
||||
hex 00 ; 5
|
||||
hex 00 ; 6
|
||||
hex 00 ; 7
|
||||
hex 01 ; 8
|
||||
hex 00 ; 9
|
||||
hex 00 ; A
|
||||
hex 00 ; B
|
||||
|
||||
adrl resumeBUFF ; 04
|
||||
resumeBUFF ds 1024
|
||||
ds 8
|
||||
|
||||
*--- READ TOC
|
||||
|
||||
proREADTOC dw 5 ; 00 pcount
|
||||
ds 2 ; 02 device num
|
||||
dw $8043 ; 04 status code
|
||||
adrl readtocLIST ; 06 status list
|
||||
adrl 1024 ; 0A request count
|
||||
ds 4 ; 0E transfer count
|
||||
|
||||
asc "readtocLIST"
|
||||
|
||||
readtocLIST ds 2 ; 00
|
||||
hex 43 ; 0
|
||||
hex 02 ; 1
|
||||
hex 00 ; 2
|
||||
hex 00 ; 3
|
||||
hex 00 ; 4
|
||||
hex 00 ; 5
|
||||
hex 00 ; 6
|
||||
hex 04 ; 7
|
||||
hex 00 ; 8
|
||||
hex 00 ; 9
|
||||
hex 00 ; A
|
||||
hex 00 ; B
|
||||
|
||||
adrl readtocBUFF ; 04
|
||||
readtocBUFF ds 1024
|
||||
ds 8
|
||||
|
||||
*--- PLAY AUDIO TRACK INDEX
|
||||
|
||||
asc "proCONTROL"
|
||||
|
||||
proCONTROL dw 5 ; 00 pcount
|
||||
ds 2 ; 02 device num
|
||||
dw $8048 ; 04 status code
|
||||
adrl controlLIST ; 06 status list
|
||||
ds 4 ; 0A request count
|
||||
ds 4 ; 0E transfer count
|
||||
|
||||
asc "controlLIST"
|
||||
|
||||
controlLIST ds 2 ; 00
|
||||
commandDATA hex 48 ; 0
|
||||
hex 00 ; 1
|
||||
hex 00 ; 2
|
||||
hex 00 ; 3
|
||||
hex 01 ; 4
|
||||
hex 00 ; 5
|
||||
hex 00 ; 6
|
||||
hex 01 ; 7
|
||||
hex 00 ; 8
|
||||
hex 00 ; 9
|
||||
hex 00 ; A
|
||||
hex 00 ; B
|
||||
|
||||
adrl commandBUFF
|
||||
commandBUFF ds 1024
|
||||
ds 8
|
||||
|
||||
*--- PLAY AUDIO(10)
|
||||
|
||||
asc "proPLAY10"
|
||||
|
||||
proPLAY10 dw 5 ; 00 pcount
|
||||
ds 2 ; 02 device num
|
||||
dw $8045 ; 04 status code
|
||||
adrl play10LIST ; 06 status list
|
||||
ds 4 ; 0A request count
|
||||
ds 4 ; 0E transfer count
|
||||
|
||||
asc "play10LIST"
|
||||
|
||||
play10LIST ds 2 ; 00
|
||||
hex 45 ; 0
|
||||
hex 00 ; 1
|
||||
hex 00 ; 2
|
||||
hex 00 ; 3
|
||||
hex 30 ; 4
|
||||
hex 00 ; 5
|
||||
hex 00 ; 6
|
||||
hex 20 ; 7
|
||||
hex 00 ; 8
|
||||
hex 00 ; 9
|
||||
hex 00 ; A
|
||||
hex 00 ; B
|
||||
|
||||
adrl play10BUFF
|
||||
play10BUFF ds 1024
|
||||
ds 8
|
||||
|
||||
*--- PLAY AUDIO(12)
|
||||
|
||||
asc "proPLAY12"
|
||||
|
||||
proPLAY12 dw 5 ; 00 pcount
|
||||
ds 2 ; 02 device num
|
||||
dw $80a5 ; 04 status code
|
||||
adrl play12LIST ; 06 status list
|
||||
ds 4 ; 0A request count
|
||||
ds 4 ; 0E transfer count
|
||||
|
||||
asc "play12LIST"
|
||||
|
||||
play12LIST ds 2 ; 00
|
||||
hex a5 ; 0
|
||||
hex 00 ; 1
|
||||
hex 00 ; 2
|
||||
hex 00 ; 3
|
||||
hex 20 ; 4
|
||||
hex 00 ; 5
|
||||
hex 00 ; 6
|
||||
hex 10 ; 7
|
||||
hex 08 ; 8
|
||||
hex 00 ; 9
|
||||
hex 00 ; A
|
||||
hex 00 ; B
|
||||
|
||||
adrl play12BUFF
|
||||
play12BUFF ds 1024
|
||||
ds 8
|
||||
|
||||
*--- PLAY AUDIO MSF
|
||||
|
||||
asc "proPLAYMSF"
|
||||
|
||||
proPLAYMSF dw 5 ; 00 pcount
|
||||
ds 2 ; 02 device num
|
||||
dw $8047 ; 04 status code
|
||||
adrl playmsfLIST ; 06 status list
|
||||
ds 4 ; 0A request count
|
||||
ds 4 ; 0E transfer count
|
||||
|
||||
asc "playmsfLIST"
|
||||
|
||||
playmsfLIST ds 2 ; 00
|
||||
hex 47 ; 0
|
||||
hex 00 ; 1
|
||||
hex 00 ; 2
|
||||
hex 14 ; 3
|
||||
hex 15 ; 4
|
||||
hex 00 ; 5
|
||||
hex 17 ; 6
|
||||
hex 16 ; 7
|
||||
hex 00 ; 8
|
||||
hex 00 ; 9
|
||||
hex 00 ; A
|
||||
hex 00 ; B
|
||||
|
||||
adrl playmsfBUFF
|
||||
playmsfBUFF ds 1024
|
||||
ds 8
|
||||
|
||||
*--- PLAY AUDIO TRACK RELATIVE(10)
|
||||
|
||||
asc "proPLAYTR10"
|
||||
|
||||
proPLAYTR10 dw 5 ; 00 pcount
|
||||
ds 2 ; 02 device num
|
||||
dw $8049 ; 04 status code
|
||||
adrl playtr10LIST ; 06 status list
|
||||
ds 4 ; 0A request count
|
||||
ds 4 ; 0E transfer count
|
||||
|
||||
asc "playtr10LIST"
|
||||
|
||||
playtr10LIST ds 2 ; 00
|
||||
hex 49 ; 0
|
||||
hex 00 ; 1
|
||||
hex 00 ; 2
|
||||
hex 00 ; 3
|
||||
hex 00 ; 4
|
||||
hex 08 ; 5
|
||||
hex 01 ; 6
|
||||
hex 00 ; 7
|
||||
hex 10 ; 8
|
||||
hex 00 ; 9
|
||||
hex 00 ; A
|
||||
hex 00 ; B
|
||||
|
||||
adrl playtr10BUFF
|
||||
playtr10BUFF ds 1024
|
||||
ds 8
|
||||
|
||||
*--- PLAY AUDIO TRACK RELATIVE(12)
|
||||
|
||||
asc "proPLAYTR12"
|
||||
|
||||
proPLAYTR12 dw 5 ; 00 pcount
|
||||
ds 2 ; 02 device num
|
||||
dw $80a9 ; 04 status code
|
||||
adrl playtr12LIST ; 06 status list
|
||||
ds 4 ; 0A request count
|
||||
ds 4 ; 0E transfer count
|
||||
|
||||
asc "playtr12LIST"
|
||||
|
||||
playtr12LIST ds 2 ; 00
|
||||
hex a9 ; 0
|
||||
hex 00 ; 1
|
||||
hex 00 ; 2
|
||||
hex 00 ; 3
|
||||
hex 06 ; 4
|
||||
hex 00 ; 5
|
||||
hex 00 ; 6
|
||||
hex 00 ; 7
|
||||
hex 80 ; 8
|
||||
hex 00 ; 9
|
||||
hex 01 ; A
|
||||
hex 00 ; B
|
||||
|
||||
adrl playtr12BUFF
|
||||
playtr12BUFF ds 1024
|
||||
ds 8
|
||||
|
||||
*---
|
||||
|
||||
asc "proDCONTROL"
|
||||
|
||||
proDCONTROL dw 5 ; 00 pcount
|
||||
ds 2 ; 02 device num
|
||||
ds 2 ; 04 control code
|
||||
adrl devCONTROL ; 06 control list
|
||||
ds 4 ; 0A request count
|
||||
ds 4 ; 0E transfer count
|
||||
|
||||
asc "devCONTROL"
|
||||
|
||||
devCONTROL ds 512
|
||||
|
||||
*----------
|
||||
|
||||
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
# File: SCSI.Driver.make
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
# File: SCSIChanger.Driver.make
|
||||
@@ -0,0 +1 @@
|
||||
# File: SCSI.Driver.make
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
# File: SCSITape.Driver.make
|
||||
Reference in New Issue
Block a user