2024-01-03 03:51:33 +00:00
|
|
|
; Copyright Terence J. Boldt (c)2021-2024
|
2022-01-11 04:00:58 +00:00
|
|
|
; Use of this source code is governed by an MIT
|
|
|
|
; license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
; This file contains the source for the RPI.COMMAND
|
|
|
|
; application that runs on the Apple II and extends
|
|
|
|
; ProDOS BASIC.SYSTEM to add the RPI command which
|
|
|
|
; allows commands to be executed on the Raspberry Pi
|
|
|
|
|
2021-12-28 14:49:12 +00:00
|
|
|
.ORG $300
|
|
|
|
INBUF = $200 ;GETLN input buffer.
|
|
|
|
WAIT = $FCA8 ;Monitor wait routine.
|
|
|
|
BELL = $FF3A ;Monitor bell routine.
|
|
|
|
EXTRNCMD = $BE06 ;External cmd JMP vector.
|
|
|
|
XTRNADDR = $BE50 ;Ext cmd implementation addr.
|
|
|
|
XLEN = $BE52 ;length of command string-1.
|
|
|
|
XCNUM = $BE53 ;CI cmd no. (ext cmd - 0).
|
|
|
|
PBITS = $BE54 ;Command parameter bits.
|
2021-12-28 21:23:27 +00:00
|
|
|
XRETURN = $FF58 ;Known RTS instruction.
|
2022-02-07 02:06:22 +00:00
|
|
|
InputByte = $c08e
|
|
|
|
OutputByte = $c08d
|
|
|
|
InputFlags = $c08b
|
|
|
|
OutputFlags = $c087
|
2021-12-28 14:49:12 +00:00
|
|
|
|
|
|
|
ReadBlockCommand = $01
|
|
|
|
WriteBlockCommand = $02
|
|
|
|
GetTimeCommand = $03
|
|
|
|
ChangeDriveCommand = $04
|
|
|
|
ExecCommand = $05
|
|
|
|
LoadFileCommand = $06
|
|
|
|
SaveFileCommand = $07
|
|
|
|
MenuCommand = $08
|
|
|
|
|
|
|
|
InputString = $fd67
|
|
|
|
PrintChar = $fded
|
2024-04-18 18:23:22 +00:00
|
|
|
PrintHex = $fde3
|
2021-12-28 14:49:12 +00:00
|
|
|
Keyboard = $c000
|
|
|
|
ClearKeyboard = $c010
|
|
|
|
Wait = $fca8
|
|
|
|
|
2022-02-07 02:06:22 +00:00
|
|
|
LastChar = $06
|
|
|
|
SlotL = $fe
|
|
|
|
SlotH = $ff
|
|
|
|
ESC = $9b
|
|
|
|
|
2022-03-04 03:23:04 +00:00
|
|
|
;macro for string with high-bit set
|
|
|
|
.macro aschi str
|
|
|
|
.repeat .strlen (str), c
|
|
|
|
.byte .strat (str, c) | $80
|
|
|
|
.endrep
|
|
|
|
.endmacro
|
|
|
|
|
2022-02-07 02:06:22 +00:00
|
|
|
.org $2000
|
2024-04-18 18:23:22 +00:00
|
|
|
; Find Apple2-IO-RPi card
|
|
|
|
ldx #$06
|
|
|
|
ldy #$09
|
|
|
|
CheckIdBytes:
|
|
|
|
lda $C700,y ; !! Self modifying code
|
|
|
|
cmp IdBytes,y
|
|
|
|
bne NextCard
|
|
|
|
dey
|
|
|
|
bne CheckIdBytes
|
|
|
|
jmp FoundCard
|
|
|
|
NextCard:
|
|
|
|
dec CheckIdBytes+2
|
|
|
|
ldy #$09
|
|
|
|
dex
|
|
|
|
bne CheckIdBytes
|
|
|
|
CardNotFound:
|
2022-02-07 02:06:22 +00:00
|
|
|
ldy #$00
|
2024-04-18 18:23:22 +00:00
|
|
|
PrintCardNotFound:
|
|
|
|
lda TextCardNotFound,y
|
|
|
|
beq Failed
|
|
|
|
jsr PrintChar
|
2022-02-07 02:06:22 +00:00
|
|
|
iny
|
2024-04-18 18:23:22 +00:00
|
|
|
bne PrintCardNotFound
|
|
|
|
Failed:
|
|
|
|
rts
|
|
|
|
FoundCard:
|
|
|
|
ldy #$00
|
|
|
|
PrintCardFound:
|
|
|
|
lda TextCardFound,y
|
|
|
|
beq PrintCardNumber
|
|
|
|
jsr PrintChar
|
2022-02-07 02:06:22 +00:00
|
|
|
iny
|
2024-04-18 18:23:22 +00:00
|
|
|
bne PrintCardFound
|
|
|
|
PrintCardNumber:
|
|
|
|
inx
|
|
|
|
txa
|
|
|
|
jsr PrintHex
|
|
|
|
lda #$8D
|
|
|
|
jsr PrintChar
|
|
|
|
|
|
|
|
SetOffsetForCard:
|
2022-02-07 02:06:22 +00:00
|
|
|
txa
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
tax
|
2024-04-18 18:23:22 +00:00
|
|
|
|
|
|
|
|
2022-02-07 02:06:22 +00:00
|
|
|
Start:
|
2024-06-07 21:51:38 +00:00
|
|
|
stx slotx + $1f01 ;set the slot for the driver
|
2024-04-18 18:23:22 +00:00
|
|
|
ldy #$00
|
2022-03-04 03:23:04 +00:00
|
|
|
PrintString:
|
|
|
|
lda Text,y
|
|
|
|
beq copyDriver
|
|
|
|
jsr PrintChar
|
|
|
|
iny
|
|
|
|
bne PrintString
|
|
|
|
copyDriver:
|
2022-03-04 23:24:59 +00:00
|
|
|
ldy #$00
|
2022-03-04 03:23:04 +00:00
|
|
|
copyDriverByte:
|
2024-04-18 18:23:22 +00:00
|
|
|
lda $2200,y
|
2022-03-04 23:24:59 +00:00
|
|
|
sta $0300,y
|
|
|
|
iny
|
|
|
|
cpy #$e6
|
2022-03-04 03:23:04 +00:00
|
|
|
bne copyDriverByte
|
2021-12-28 14:49:12 +00:00
|
|
|
;
|
|
|
|
; FIRST SAVE THE EXTERNAL COMMAND ADDRESS SO YOU WON'T
|
|
|
|
; DISCONNECT ANY PREVIOUSLY CONNECTED COMMAND.
|
|
|
|
;
|
|
|
|
LDA EXTRNCMD+1
|
|
|
|
STA NXTCMD
|
|
|
|
LDA EXTRNCMD+2
|
|
|
|
STA NXTCMD+1
|
|
|
|
;
|
|
|
|
LDA #<RPI ;Install the address of our
|
|
|
|
STA EXTRNCMD+1 ; command handler in the
|
|
|
|
LDA #>RPI ; external command JMP
|
|
|
|
STA EXTRNCMD+2 ; vector.
|
2022-03-04 23:24:59 +00:00
|
|
|
|
|
|
|
lda #ExecCommand
|
|
|
|
jsr SendByte
|
|
|
|
ldy #$00
|
|
|
|
nextCommandByte:
|
|
|
|
lda a2help, y
|
|
|
|
beq finishCommand
|
|
|
|
jsr SendByte
|
|
|
|
iny
|
|
|
|
jmp nextCommandByte
|
|
|
|
finishCommand:
|
|
|
|
lda #$00
|
|
|
|
jsr SendByte
|
|
|
|
showVersion:
|
|
|
|
jsr GetByte
|
|
|
|
cmp #$00
|
|
|
|
beq FinishDriver
|
|
|
|
jsr PrintChar
|
|
|
|
jmp showVersion
|
|
|
|
FinishDriver:
|
|
|
|
rts
|
|
|
|
|
|
|
|
a2help:
|
|
|
|
.byte "a2help", $00
|
2022-03-04 03:23:04 +00:00
|
|
|
|
|
|
|
Text:
|
2024-04-18 18:23:22 +00:00
|
|
|
.if HW_TYPE = 0
|
2024-06-07 21:51:38 +00:00
|
|
|
aschi "RPI command version: 0010 (classic)"
|
2024-04-18 18:23:22 +00:00
|
|
|
.else
|
2024-06-07 21:51:38 +00:00
|
|
|
aschi "RPI command version: 8010 (pico)"
|
2024-04-18 18:23:22 +00:00
|
|
|
.endif
|
|
|
|
.byte $8d
|
|
|
|
.byte $00
|
|
|
|
|
|
|
|
IdBytes:
|
|
|
|
.byte $E0,$20,$E0,$00,$E0,$03,$E0,$3C,$A9,$3F
|
|
|
|
|
|
|
|
TextCardFound:
|
|
|
|
aschi "Found Apple2-IO-RPi in slot "
|
|
|
|
.byte $00
|
|
|
|
|
|
|
|
TextCardNotFound:
|
|
|
|
aschi "Apple2-IO-RPi not found"
|
|
|
|
.byte $8D
|
2022-03-04 03:23:04 +00:00
|
|
|
end:
|
2024-04-18 18:23:22 +00:00
|
|
|
.byte $00
|
2022-03-04 03:23:04 +00:00
|
|
|
|
|
|
|
.repeat 255-<end
|
|
|
|
.byte 0
|
|
|
|
.endrepeat
|
|
|
|
|
|
|
|
.org $0300
|
2021-12-28 14:49:12 +00:00
|
|
|
RPI: LDX #0 ;Check for our command.
|
|
|
|
NXTCHR: LDA INBUF,X ;Get first character.
|
|
|
|
ora #$20 ;Make it lower case
|
|
|
|
CMP CMD,X ;Does it match?
|
|
|
|
BNE NOTOURS ;No, back to CI.
|
|
|
|
INX ;Next character
|
|
|
|
CPX #CMDLEN ;All characters yet?
|
|
|
|
BNE NXTCHR ;No, read next one.
|
|
|
|
;
|
|
|
|
LDA #CMDLEN-1 ;Our cmd! Put cmd length-1
|
2021-12-28 21:23:27 +00:00
|
|
|
;lda #$8d
|
|
|
|
;sta $02ff
|
|
|
|
;lda #$fe
|
2021-12-28 14:49:12 +00:00
|
|
|
STA XLEN ; in CI global XLEN.
|
2021-12-28 21:23:27 +00:00
|
|
|
LDA #<XRETURN ;Point XTRNADDR to a known
|
2021-12-28 14:49:12 +00:00
|
|
|
STA XTRNADDR ; RTS since we'll handle
|
2021-12-28 21:23:27 +00:00
|
|
|
LDA #>XRETURN ; at the time we intercept
|
2021-12-28 14:49:12 +00:00
|
|
|
|
|
|
|
STA XTRNADDR+1 ; our command.
|
|
|
|
LDA #0 ;Mark the cmd number as
|
|
|
|
STA XCNUM ; zero (external).
|
|
|
|
STA PBITS ;And indicate no parameters
|
|
|
|
STA PBITS+1 ; to be parsed.
|
|
|
|
lda #$8d
|
|
|
|
jsr $fded
|
2022-02-07 02:06:22 +00:00
|
|
|
slotx: ldx #$70 ; set x to slot # in high nibble
|
2021-12-28 14:49:12 +00:00
|
|
|
clc
|
|
|
|
bcc SendCommand
|
|
|
|
;
|
|
|
|
NOTOURS: SEC ; ALWAYS SET CARRY IF NOT YOUR
|
|
|
|
JMP (NXTCMD) ; CMD AND LET NEXT COMMAND TRY
|
|
|
|
; ; TO CLAIM IT.
|
|
|
|
|
|
|
|
SendCommand:
|
|
|
|
bit ClearKeyboard
|
|
|
|
lda #$05 ;send command 5 = exec
|
|
|
|
jsr SendByte
|
|
|
|
ldy #$03 ;skip over "RPI"
|
|
|
|
getInput:
|
|
|
|
lda $0200,y
|
|
|
|
cmp #$8d
|
|
|
|
beq sendNullTerminator
|
|
|
|
and #$7f
|
|
|
|
jsr SendByte
|
|
|
|
iny
|
|
|
|
bne getInput
|
|
|
|
sendNullTerminator:
|
|
|
|
lda #$00
|
|
|
|
jsr SendByte
|
|
|
|
DumpOutput:
|
|
|
|
jsr GetByte
|
|
|
|
cmp #$00
|
|
|
|
beq endOutput
|
|
|
|
jsr PrintChar
|
|
|
|
clc
|
|
|
|
bcc DumpOutput
|
|
|
|
endOutput:
|
2021-12-28 21:23:27 +00:00
|
|
|
clc
|
|
|
|
jmp (NXTCMD)
|
2021-12-28 14:49:12 +00:00
|
|
|
|
|
|
|
HelpCommand:
|
|
|
|
.byte "a2help",$00
|
|
|
|
|
|
|
|
SendByte:
|
|
|
|
pha
|
|
|
|
waitWrite:
|
2022-02-07 02:06:22 +00:00
|
|
|
lda InputFlags,x
|
2021-12-28 14:49:12 +00:00
|
|
|
rol
|
|
|
|
rol
|
|
|
|
bcs waitWrite
|
|
|
|
pla
|
2022-02-07 02:06:22 +00:00
|
|
|
sta OutputByte,x
|
Initial Pico hardware support
* Added assemble.cmd for Windows.
In the long run, some (c)make-based cross-plafrom solution seems preferable.
* Fill up the menu page just like the other pages.
* Allow to assemble for different hardware types.
The first script parameter is used to set the ca65 symbol HW_TYPE. Without parameter, HW_TYPE is set to 0.
* Avoid unwanted i/o access.
Depending on the 6502, LDA addr,X and/or STA addr,X produce additional phantom reads. In order to avoid those phantom reads to do i/o access, I used the "classic" approach of moving those reads from page $C0 to page $BF.
* Made use of BIT instruction to access InputFlags from firmware.
Doing the same for access from disk-based software would require selfmodifying code as there's not bit <addr>,x instruction.
* Removed push/pop from GetByte.
After the replacing the rol instructions with bit instructions with a recent chnage, the only reason left to save a to the stack was setting the OutputFlags. But that can be done using x.
* Added InputFlags check for consistency.
* Added support for an alternative hardware type.
The new hardware type has simple UART-type interface. Beside the two data registers, there are only the two bits to indicate readability and writability of the data registers.
* Added another comminucation interface implementation.
Use ACM CDC (or another proprietary) USB serial device for communication.
Currently VID / PID of a Raspberry Pi Pico SDK CDC UART are hardcoded - see https://github.com/raspberrypi/usb-pid
* Revert "Avoid unwanted i/o access."
Neither the original hardware type nor the alternative hardware type have any read and write i/o port share addresses. Therefore phantom reads aren't an issue with those hardware types.
This reverts commit ae5cb754fb9540794bdb5465a77e1263ca257539.
* Adapt to the different error signatures on Linux.
So far the code was only tested on Windows.
* Added implementation of the alternative hardware type.
The implemenation is based on a Raspberry Pi Pico - see https://github.com/a2retrosystems/A2retroNET
The new hardware type has a simple UART-type interface. Beside the two data registers, there are only the two bits to indicate readability and writability of the data registers.
* Modify the HD image for the alternative hardware type.
It is likely desirable to have two HD images for the two hardware types. And likely the apple2driver program should default to the right one based on its protocol setting. BUt given that the HD image(s) shouldn't be part of the actual Git repo anyhow, I don't do anything about this here and now.
* Fixed shell startup (?)
At least on the alternative hardware, this "blindly sending" a reset command causes the shell to be terminated right away:
The driver acknowldges the reset command with a zero byte - and that byte ends up being read by DumpOutput causing it to branch to endOutput.
Maybe that sending a reset command is beneficial on the original hardware. Then another .if is required. Or DumpOutput shouldn't quit on reading a zero byte - the shell handler doesn't seem to send it on purpose(?)
* Upate HD image with recent shell change.
* Fix shell shutdown (?)
At least on the alternative hardware, things happen this way:
1. The shell 'exit' command has ptyOut signal outputComplete and terminate. At this point, ptyIn is still blocked up to one second in ReadCharacter - and can therefore not react on outputComplete.
2. The outputComplete handler in ShellCommand sends a zero byte. This makes on the A2 DumpOutput return and the caller send a zero byte. ShellCommand must not return here as ptyIn is still blocked.
3. The zero byte from the A2 has ptyIn return from ReadCharacter, signal userCancelled and terminate.
4. ShellCommand can now return, but it must not send a zero byte, as the A2 is not expecting it - and will therefore later misinterpret it.
Maybe the original hardware needs another handling, then differentiation of behavior in shell.go becomes necessary.
* Moved boot text out of IIgs copyright message area.
Having the boot text start at the left border of the third line makes it look nice on the cold boot screen of all Apple II's - and there's where the user sees it for some time while waiting for the RPi to come up.
* Several adjustements:
- Get latest Go version as of now.
- Nowadays (?) GitHub 'git clone' seems to only work with a GitHub account. Therefore the zip download workaround. The becomes hopefully unnecessary soon with Go module magic.
- Use 'go mod tidy' to update .sum file for now.
- Error handling for an empty drive 2 is currently not exactly great, so download Total Replay for drive 2. Unfortunately there's no stable URL as of now.
- Use $USER and $HOME instead of hardcoded values.
- Removed deprecated syslog output directives.
* Added brief fork description.
* Added ProDOS-Utilities reference.
* Reverted back to using 'git clone'.
I've no idea why git acted up the other day :-( Now, everything is back to normal...
* Ignore Pico build directory.
* Updated from https://github.com/a2retrosystems/A2retroNET
* Updated from https://github.com/a2retrosystems/A2retroNET
At this point, nothing at all is done on an A2 reset. This can likely be improved. However, Apple2-IO-RPi doesn't seem to handle A2 reset exactly gracefully anyhow.
In general, it seems desirable to introduce some simple framing protocol - like SLIP - that allows to recover from an A2 reset in the middle of an Apple2-IO-RPi command execution.
Such a framing protocol would allow to introduce different frame types. One frame type could then be an A2 reset frame sent by the A2retroNET firmware.
* Make use of brand new stable Total Replay download URL.
Thanks to 4am :-)
* Fixed typos.
* Clone upstream ProDOS-Utilities.
My ProDOS-Utilities pull request was merged.
* Added support for boards without LED.
* Updated link.
* Adjusted to the current A2retroNET hardware.
* Removed support for the Pico W.
* Updated URL.
* Updated URL.
* Make use A2Pico library.
* Added link to A2Pico.
* Remove intermediates from repo.
* Build intermediates from Pico build.
* Have LED reflect status of logic ACM connection.
* Update upstream repo references.
* Adjust build instructions.
* Update README.md
* Fix build and update dependencies
* Fix binary comparison
* Fix firware bug on classic hardware
---------
Co-authored-by: Oliver Schmidt <ol.sc@web.de>
2024-02-06 03:49:09 +00:00
|
|
|
.if HW_TYPE = 0
|
2021-12-28 14:49:12 +00:00
|
|
|
lda #$1e ; set bit 0 low to indicate write started
|
2022-02-07 02:06:22 +00:00
|
|
|
sta OutputFlags,x
|
2021-12-28 14:49:12 +00:00
|
|
|
finishWrite:
|
2022-02-07 02:06:22 +00:00
|
|
|
lda InputFlags,x
|
2021-12-28 14:49:12 +00:00
|
|
|
rol
|
|
|
|
rol
|
|
|
|
bcc finishWrite
|
|
|
|
lda #$1f
|
2022-02-07 02:06:22 +00:00
|
|
|
sta OutputFlags,x
|
Initial Pico hardware support
* Added assemble.cmd for Windows.
In the long run, some (c)make-based cross-plafrom solution seems preferable.
* Fill up the menu page just like the other pages.
* Allow to assemble for different hardware types.
The first script parameter is used to set the ca65 symbol HW_TYPE. Without parameter, HW_TYPE is set to 0.
* Avoid unwanted i/o access.
Depending on the 6502, LDA addr,X and/or STA addr,X produce additional phantom reads. In order to avoid those phantom reads to do i/o access, I used the "classic" approach of moving those reads from page $C0 to page $BF.
* Made use of BIT instruction to access InputFlags from firmware.
Doing the same for access from disk-based software would require selfmodifying code as there's not bit <addr>,x instruction.
* Removed push/pop from GetByte.
After the replacing the rol instructions with bit instructions with a recent chnage, the only reason left to save a to the stack was setting the OutputFlags. But that can be done using x.
* Added InputFlags check for consistency.
* Added support for an alternative hardware type.
The new hardware type has simple UART-type interface. Beside the two data registers, there are only the two bits to indicate readability and writability of the data registers.
* Added another comminucation interface implementation.
Use ACM CDC (or another proprietary) USB serial device for communication.
Currently VID / PID of a Raspberry Pi Pico SDK CDC UART are hardcoded - see https://github.com/raspberrypi/usb-pid
* Revert "Avoid unwanted i/o access."
Neither the original hardware type nor the alternative hardware type have any read and write i/o port share addresses. Therefore phantom reads aren't an issue with those hardware types.
This reverts commit ae5cb754fb9540794bdb5465a77e1263ca257539.
* Adapt to the different error signatures on Linux.
So far the code was only tested on Windows.
* Added implementation of the alternative hardware type.
The implemenation is based on a Raspberry Pi Pico - see https://github.com/a2retrosystems/A2retroNET
The new hardware type has a simple UART-type interface. Beside the two data registers, there are only the two bits to indicate readability and writability of the data registers.
* Modify the HD image for the alternative hardware type.
It is likely desirable to have two HD images for the two hardware types. And likely the apple2driver program should default to the right one based on its protocol setting. BUt given that the HD image(s) shouldn't be part of the actual Git repo anyhow, I don't do anything about this here and now.
* Fixed shell startup (?)
At least on the alternative hardware, this "blindly sending" a reset command causes the shell to be terminated right away:
The driver acknowldges the reset command with a zero byte - and that byte ends up being read by DumpOutput causing it to branch to endOutput.
Maybe that sending a reset command is beneficial on the original hardware. Then another .if is required. Or DumpOutput shouldn't quit on reading a zero byte - the shell handler doesn't seem to send it on purpose(?)
* Upate HD image with recent shell change.
* Fix shell shutdown (?)
At least on the alternative hardware, things happen this way:
1. The shell 'exit' command has ptyOut signal outputComplete and terminate. At this point, ptyIn is still blocked up to one second in ReadCharacter - and can therefore not react on outputComplete.
2. The outputComplete handler in ShellCommand sends a zero byte. This makes on the A2 DumpOutput return and the caller send a zero byte. ShellCommand must not return here as ptyIn is still blocked.
3. The zero byte from the A2 has ptyIn return from ReadCharacter, signal userCancelled and terminate.
4. ShellCommand can now return, but it must not send a zero byte, as the A2 is not expecting it - and will therefore later misinterpret it.
Maybe the original hardware needs another handling, then differentiation of behavior in shell.go becomes necessary.
* Moved boot text out of IIgs copyright message area.
Having the boot text start at the left border of the third line makes it look nice on the cold boot screen of all Apple II's - and there's where the user sees it for some time while waiting for the RPi to come up.
* Several adjustements:
- Get latest Go version as of now.
- Nowadays (?) GitHub 'git clone' seems to only work with a GitHub account. Therefore the zip download workaround. The becomes hopefully unnecessary soon with Go module magic.
- Use 'go mod tidy' to update .sum file for now.
- Error handling for an empty drive 2 is currently not exactly great, so download Total Replay for drive 2. Unfortunately there's no stable URL as of now.
- Use $USER and $HOME instead of hardcoded values.
- Removed deprecated syslog output directives.
* Added brief fork description.
* Added ProDOS-Utilities reference.
* Reverted back to using 'git clone'.
I've no idea why git acted up the other day :-( Now, everything is back to normal...
* Ignore Pico build directory.
* Updated from https://github.com/a2retrosystems/A2retroNET
* Updated from https://github.com/a2retrosystems/A2retroNET
At this point, nothing at all is done on an A2 reset. This can likely be improved. However, Apple2-IO-RPi doesn't seem to handle A2 reset exactly gracefully anyhow.
In general, it seems desirable to introduce some simple framing protocol - like SLIP - that allows to recover from an A2 reset in the middle of an Apple2-IO-RPi command execution.
Such a framing protocol would allow to introduce different frame types. One frame type could then be an A2 reset frame sent by the A2retroNET firmware.
* Make use of brand new stable Total Replay download URL.
Thanks to 4am :-)
* Fixed typos.
* Clone upstream ProDOS-Utilities.
My ProDOS-Utilities pull request was merged.
* Added support for boards without LED.
* Updated link.
* Adjusted to the current A2retroNET hardware.
* Removed support for the Pico W.
* Updated URL.
* Updated URL.
* Make use A2Pico library.
* Added link to A2Pico.
* Remove intermediates from repo.
* Build intermediates from Pico build.
* Have LED reflect status of logic ACM connection.
* Update upstream repo references.
* Adjust build instructions.
* Update README.md
* Fix build and update dependencies
* Fix binary comparison
* Fix firware bug on classic hardware
---------
Co-authored-by: Oliver Schmidt <ol.sc@web.de>
2024-02-06 03:49:09 +00:00
|
|
|
.endif
|
2021-12-28 14:49:12 +00:00
|
|
|
rts
|
|
|
|
|
|
|
|
GetByte:
|
Initial Pico hardware support
* Added assemble.cmd for Windows.
In the long run, some (c)make-based cross-plafrom solution seems preferable.
* Fill up the menu page just like the other pages.
* Allow to assemble for different hardware types.
The first script parameter is used to set the ca65 symbol HW_TYPE. Without parameter, HW_TYPE is set to 0.
* Avoid unwanted i/o access.
Depending on the 6502, LDA addr,X and/or STA addr,X produce additional phantom reads. In order to avoid those phantom reads to do i/o access, I used the "classic" approach of moving those reads from page $C0 to page $BF.
* Made use of BIT instruction to access InputFlags from firmware.
Doing the same for access from disk-based software would require selfmodifying code as there's not bit <addr>,x instruction.
* Removed push/pop from GetByte.
After the replacing the rol instructions with bit instructions with a recent chnage, the only reason left to save a to the stack was setting the OutputFlags. But that can be done using x.
* Added InputFlags check for consistency.
* Added support for an alternative hardware type.
The new hardware type has simple UART-type interface. Beside the two data registers, there are only the two bits to indicate readability and writability of the data registers.
* Added another comminucation interface implementation.
Use ACM CDC (or another proprietary) USB serial device for communication.
Currently VID / PID of a Raspberry Pi Pico SDK CDC UART are hardcoded - see https://github.com/raspberrypi/usb-pid
* Revert "Avoid unwanted i/o access."
Neither the original hardware type nor the alternative hardware type have any read and write i/o port share addresses. Therefore phantom reads aren't an issue with those hardware types.
This reverts commit ae5cb754fb9540794bdb5465a77e1263ca257539.
* Adapt to the different error signatures on Linux.
So far the code was only tested on Windows.
* Added implementation of the alternative hardware type.
The implemenation is based on a Raspberry Pi Pico - see https://github.com/a2retrosystems/A2retroNET
The new hardware type has a simple UART-type interface. Beside the two data registers, there are only the two bits to indicate readability and writability of the data registers.
* Modify the HD image for the alternative hardware type.
It is likely desirable to have two HD images for the two hardware types. And likely the apple2driver program should default to the right one based on its protocol setting. BUt given that the HD image(s) shouldn't be part of the actual Git repo anyhow, I don't do anything about this here and now.
* Fixed shell startup (?)
At least on the alternative hardware, this "blindly sending" a reset command causes the shell to be terminated right away:
The driver acknowldges the reset command with a zero byte - and that byte ends up being read by DumpOutput causing it to branch to endOutput.
Maybe that sending a reset command is beneficial on the original hardware. Then another .if is required. Or DumpOutput shouldn't quit on reading a zero byte - the shell handler doesn't seem to send it on purpose(?)
* Upate HD image with recent shell change.
* Fix shell shutdown (?)
At least on the alternative hardware, things happen this way:
1. The shell 'exit' command has ptyOut signal outputComplete and terminate. At this point, ptyIn is still blocked up to one second in ReadCharacter - and can therefore not react on outputComplete.
2. The outputComplete handler in ShellCommand sends a zero byte. This makes on the A2 DumpOutput return and the caller send a zero byte. ShellCommand must not return here as ptyIn is still blocked.
3. The zero byte from the A2 has ptyIn return from ReadCharacter, signal userCancelled and terminate.
4. ShellCommand can now return, but it must not send a zero byte, as the A2 is not expecting it - and will therefore later misinterpret it.
Maybe the original hardware needs another handling, then differentiation of behavior in shell.go becomes necessary.
* Moved boot text out of IIgs copyright message area.
Having the boot text start at the left border of the third line makes it look nice on the cold boot screen of all Apple II's - and there's where the user sees it for some time while waiting for the RPi to come up.
* Several adjustements:
- Get latest Go version as of now.
- Nowadays (?) GitHub 'git clone' seems to only work with a GitHub account. Therefore the zip download workaround. The becomes hopefully unnecessary soon with Go module magic.
- Use 'go mod tidy' to update .sum file for now.
- Error handling for an empty drive 2 is currently not exactly great, so download Total Replay for drive 2. Unfortunately there's no stable URL as of now.
- Use $USER and $HOME instead of hardcoded values.
- Removed deprecated syslog output directives.
* Added brief fork description.
* Added ProDOS-Utilities reference.
* Reverted back to using 'git clone'.
I've no idea why git acted up the other day :-( Now, everything is back to normal...
* Ignore Pico build directory.
* Updated from https://github.com/a2retrosystems/A2retroNET
* Updated from https://github.com/a2retrosystems/A2retroNET
At this point, nothing at all is done on an A2 reset. This can likely be improved. However, Apple2-IO-RPi doesn't seem to handle A2 reset exactly gracefully anyhow.
In general, it seems desirable to introduce some simple framing protocol - like SLIP - that allows to recover from an A2 reset in the middle of an Apple2-IO-RPi command execution.
Such a framing protocol would allow to introduce different frame types. One frame type could then be an A2 reset frame sent by the A2retroNET firmware.
* Make use of brand new stable Total Replay download URL.
Thanks to 4am :-)
* Fixed typos.
* Clone upstream ProDOS-Utilities.
My ProDOS-Utilities pull request was merged.
* Added support for boards without LED.
* Updated link.
* Adjusted to the current A2retroNET hardware.
* Removed support for the Pico W.
* Updated URL.
* Updated URL.
* Make use A2Pico library.
* Added link to A2Pico.
* Remove intermediates from repo.
* Build intermediates from Pico build.
* Have LED reflect status of logic ACM connection.
* Update upstream repo references.
* Adjust build instructions.
* Update README.md
* Fix build and update dependencies
* Fix binary comparison
* Fix firware bug on classic hardware
---------
Co-authored-by: Oliver Schmidt <ol.sc@web.de>
2024-02-06 03:49:09 +00:00
|
|
|
.if HW_TYPE = 0
|
2021-12-28 14:49:12 +00:00
|
|
|
lda #$1d ;set read flag low
|
2022-02-07 02:06:22 +00:00
|
|
|
sta OutputFlags,x
|
Initial Pico hardware support
* Added assemble.cmd for Windows.
In the long run, some (c)make-based cross-plafrom solution seems preferable.
* Fill up the menu page just like the other pages.
* Allow to assemble for different hardware types.
The first script parameter is used to set the ca65 symbol HW_TYPE. Without parameter, HW_TYPE is set to 0.
* Avoid unwanted i/o access.
Depending on the 6502, LDA addr,X and/or STA addr,X produce additional phantom reads. In order to avoid those phantom reads to do i/o access, I used the "classic" approach of moving those reads from page $C0 to page $BF.
* Made use of BIT instruction to access InputFlags from firmware.
Doing the same for access from disk-based software would require selfmodifying code as there's not bit <addr>,x instruction.
* Removed push/pop from GetByte.
After the replacing the rol instructions with bit instructions with a recent chnage, the only reason left to save a to the stack was setting the OutputFlags. But that can be done using x.
* Added InputFlags check for consistency.
* Added support for an alternative hardware type.
The new hardware type has simple UART-type interface. Beside the two data registers, there are only the two bits to indicate readability and writability of the data registers.
* Added another comminucation interface implementation.
Use ACM CDC (or another proprietary) USB serial device for communication.
Currently VID / PID of a Raspberry Pi Pico SDK CDC UART are hardcoded - see https://github.com/raspberrypi/usb-pid
* Revert "Avoid unwanted i/o access."
Neither the original hardware type nor the alternative hardware type have any read and write i/o port share addresses. Therefore phantom reads aren't an issue with those hardware types.
This reverts commit ae5cb754fb9540794bdb5465a77e1263ca257539.
* Adapt to the different error signatures on Linux.
So far the code was only tested on Windows.
* Added implementation of the alternative hardware type.
The implemenation is based on a Raspberry Pi Pico - see https://github.com/a2retrosystems/A2retroNET
The new hardware type has a simple UART-type interface. Beside the two data registers, there are only the two bits to indicate readability and writability of the data registers.
* Modify the HD image for the alternative hardware type.
It is likely desirable to have two HD images for the two hardware types. And likely the apple2driver program should default to the right one based on its protocol setting. BUt given that the HD image(s) shouldn't be part of the actual Git repo anyhow, I don't do anything about this here and now.
* Fixed shell startup (?)
At least on the alternative hardware, this "blindly sending" a reset command causes the shell to be terminated right away:
The driver acknowldges the reset command with a zero byte - and that byte ends up being read by DumpOutput causing it to branch to endOutput.
Maybe that sending a reset command is beneficial on the original hardware. Then another .if is required. Or DumpOutput shouldn't quit on reading a zero byte - the shell handler doesn't seem to send it on purpose(?)
* Upate HD image with recent shell change.
* Fix shell shutdown (?)
At least on the alternative hardware, things happen this way:
1. The shell 'exit' command has ptyOut signal outputComplete and terminate. At this point, ptyIn is still blocked up to one second in ReadCharacter - and can therefore not react on outputComplete.
2. The outputComplete handler in ShellCommand sends a zero byte. This makes on the A2 DumpOutput return and the caller send a zero byte. ShellCommand must not return here as ptyIn is still blocked.
3. The zero byte from the A2 has ptyIn return from ReadCharacter, signal userCancelled and terminate.
4. ShellCommand can now return, but it must not send a zero byte, as the A2 is not expecting it - and will therefore later misinterpret it.
Maybe the original hardware needs another handling, then differentiation of behavior in shell.go becomes necessary.
* Moved boot text out of IIgs copyright message area.
Having the boot text start at the left border of the third line makes it look nice on the cold boot screen of all Apple II's - and there's where the user sees it for some time while waiting for the RPi to come up.
* Several adjustements:
- Get latest Go version as of now.
- Nowadays (?) GitHub 'git clone' seems to only work with a GitHub account. Therefore the zip download workaround. The becomes hopefully unnecessary soon with Go module magic.
- Use 'go mod tidy' to update .sum file for now.
- Error handling for an empty drive 2 is currently not exactly great, so download Total Replay for drive 2. Unfortunately there's no stable URL as of now.
- Use $USER and $HOME instead of hardcoded values.
- Removed deprecated syslog output directives.
* Added brief fork description.
* Added ProDOS-Utilities reference.
* Reverted back to using 'git clone'.
I've no idea why git acted up the other day :-( Now, everything is back to normal...
* Ignore Pico build directory.
* Updated from https://github.com/a2retrosystems/A2retroNET
* Updated from https://github.com/a2retrosystems/A2retroNET
At this point, nothing at all is done on an A2 reset. This can likely be improved. However, Apple2-IO-RPi doesn't seem to handle A2 reset exactly gracefully anyhow.
In general, it seems desirable to introduce some simple framing protocol - like SLIP - that allows to recover from an A2 reset in the middle of an Apple2-IO-RPi command execution.
Such a framing protocol would allow to introduce different frame types. One frame type could then be an A2 reset frame sent by the A2retroNET firmware.
* Make use of brand new stable Total Replay download URL.
Thanks to 4am :-)
* Fixed typos.
* Clone upstream ProDOS-Utilities.
My ProDOS-Utilities pull request was merged.
* Added support for boards without LED.
* Updated link.
* Adjusted to the current A2retroNET hardware.
* Removed support for the Pico W.
* Updated URL.
* Updated URL.
* Make use A2Pico library.
* Added link to A2Pico.
* Remove intermediates from repo.
* Build intermediates from Pico build.
* Have LED reflect status of logic ACM connection.
* Update upstream repo references.
* Adjust build instructions.
* Update README.md
* Fix build and update dependencies
* Fix binary comparison
* Fix firware bug on classic hardware
---------
Co-authored-by: Oliver Schmidt <ol.sc@web.de>
2024-02-06 03:49:09 +00:00
|
|
|
.endif
|
2021-12-28 14:49:12 +00:00
|
|
|
waitRead:
|
2022-02-07 02:06:22 +00:00
|
|
|
lda InputFlags,x
|
2021-12-28 14:49:12 +00:00
|
|
|
rol
|
2022-03-04 03:23:04 +00:00
|
|
|
bcs waitRead
|
2021-12-28 14:49:12 +00:00
|
|
|
readByte:
|
2022-02-07 02:06:22 +00:00
|
|
|
lda InputByte,x
|
Initial Pico hardware support
* Added assemble.cmd for Windows.
In the long run, some (c)make-based cross-plafrom solution seems preferable.
* Fill up the menu page just like the other pages.
* Allow to assemble for different hardware types.
The first script parameter is used to set the ca65 symbol HW_TYPE. Without parameter, HW_TYPE is set to 0.
* Avoid unwanted i/o access.
Depending on the 6502, LDA addr,X and/or STA addr,X produce additional phantom reads. In order to avoid those phantom reads to do i/o access, I used the "classic" approach of moving those reads from page $C0 to page $BF.
* Made use of BIT instruction to access InputFlags from firmware.
Doing the same for access from disk-based software would require selfmodifying code as there's not bit <addr>,x instruction.
* Removed push/pop from GetByte.
After the replacing the rol instructions with bit instructions with a recent chnage, the only reason left to save a to the stack was setting the OutputFlags. But that can be done using x.
* Added InputFlags check for consistency.
* Added support for an alternative hardware type.
The new hardware type has simple UART-type interface. Beside the two data registers, there are only the two bits to indicate readability and writability of the data registers.
* Added another comminucation interface implementation.
Use ACM CDC (or another proprietary) USB serial device for communication.
Currently VID / PID of a Raspberry Pi Pico SDK CDC UART are hardcoded - see https://github.com/raspberrypi/usb-pid
* Revert "Avoid unwanted i/o access."
Neither the original hardware type nor the alternative hardware type have any read and write i/o port share addresses. Therefore phantom reads aren't an issue with those hardware types.
This reverts commit ae5cb754fb9540794bdb5465a77e1263ca257539.
* Adapt to the different error signatures on Linux.
So far the code was only tested on Windows.
* Added implementation of the alternative hardware type.
The implemenation is based on a Raspberry Pi Pico - see https://github.com/a2retrosystems/A2retroNET
The new hardware type has a simple UART-type interface. Beside the two data registers, there are only the two bits to indicate readability and writability of the data registers.
* Modify the HD image for the alternative hardware type.
It is likely desirable to have two HD images for the two hardware types. And likely the apple2driver program should default to the right one based on its protocol setting. BUt given that the HD image(s) shouldn't be part of the actual Git repo anyhow, I don't do anything about this here and now.
* Fixed shell startup (?)
At least on the alternative hardware, this "blindly sending" a reset command causes the shell to be terminated right away:
The driver acknowldges the reset command with a zero byte - and that byte ends up being read by DumpOutput causing it to branch to endOutput.
Maybe that sending a reset command is beneficial on the original hardware. Then another .if is required. Or DumpOutput shouldn't quit on reading a zero byte - the shell handler doesn't seem to send it on purpose(?)
* Upate HD image with recent shell change.
* Fix shell shutdown (?)
At least on the alternative hardware, things happen this way:
1. The shell 'exit' command has ptyOut signal outputComplete and terminate. At this point, ptyIn is still blocked up to one second in ReadCharacter - and can therefore not react on outputComplete.
2. The outputComplete handler in ShellCommand sends a zero byte. This makes on the A2 DumpOutput return and the caller send a zero byte. ShellCommand must not return here as ptyIn is still blocked.
3. The zero byte from the A2 has ptyIn return from ReadCharacter, signal userCancelled and terminate.
4. ShellCommand can now return, but it must not send a zero byte, as the A2 is not expecting it - and will therefore later misinterpret it.
Maybe the original hardware needs another handling, then differentiation of behavior in shell.go becomes necessary.
* Moved boot text out of IIgs copyright message area.
Having the boot text start at the left border of the third line makes it look nice on the cold boot screen of all Apple II's - and there's where the user sees it for some time while waiting for the RPi to come up.
* Several adjustements:
- Get latest Go version as of now.
- Nowadays (?) GitHub 'git clone' seems to only work with a GitHub account. Therefore the zip download workaround. The becomes hopefully unnecessary soon with Go module magic.
- Use 'go mod tidy' to update .sum file for now.
- Error handling for an empty drive 2 is currently not exactly great, so download Total Replay for drive 2. Unfortunately there's no stable URL as of now.
- Use $USER and $HOME instead of hardcoded values.
- Removed deprecated syslog output directives.
* Added brief fork description.
* Added ProDOS-Utilities reference.
* Reverted back to using 'git clone'.
I've no idea why git acted up the other day :-( Now, everything is back to normal...
* Ignore Pico build directory.
* Updated from https://github.com/a2retrosystems/A2retroNET
* Updated from https://github.com/a2retrosystems/A2retroNET
At this point, nothing at all is done on an A2 reset. This can likely be improved. However, Apple2-IO-RPi doesn't seem to handle A2 reset exactly gracefully anyhow.
In general, it seems desirable to introduce some simple framing protocol - like SLIP - that allows to recover from an A2 reset in the middle of an Apple2-IO-RPi command execution.
Such a framing protocol would allow to introduce different frame types. One frame type could then be an A2 reset frame sent by the A2retroNET firmware.
* Make use of brand new stable Total Replay download URL.
Thanks to 4am :-)
* Fixed typos.
* Clone upstream ProDOS-Utilities.
My ProDOS-Utilities pull request was merged.
* Added support for boards without LED.
* Updated link.
* Adjusted to the current A2retroNET hardware.
* Removed support for the Pico W.
* Updated URL.
* Updated URL.
* Make use A2Pico library.
* Added link to A2Pico.
* Remove intermediates from repo.
* Build intermediates from Pico build.
* Have LED reflect status of logic ACM connection.
* Update upstream repo references.
* Adjust build instructions.
* Update README.md
* Fix build and update dependencies
* Fix binary comparison
* Fix firware bug on classic hardware
---------
Co-authored-by: Oliver Schmidt <ol.sc@web.de>
2024-02-06 03:49:09 +00:00
|
|
|
.if HW_TYPE = 0
|
2021-12-28 14:49:12 +00:00
|
|
|
pha
|
|
|
|
lda #$1f ;set all flags high
|
2022-02-07 02:06:22 +00:00
|
|
|
sta OutputFlags,x
|
2021-12-28 14:49:12 +00:00
|
|
|
finishRead:
|
2022-02-07 02:06:22 +00:00
|
|
|
lda InputFlags,x
|
2021-12-28 14:49:12 +00:00
|
|
|
rol
|
|
|
|
bcc finishRead
|
|
|
|
pla
|
Initial Pico hardware support
* Added assemble.cmd for Windows.
In the long run, some (c)make-based cross-plafrom solution seems preferable.
* Fill up the menu page just like the other pages.
* Allow to assemble for different hardware types.
The first script parameter is used to set the ca65 symbol HW_TYPE. Without parameter, HW_TYPE is set to 0.
* Avoid unwanted i/o access.
Depending on the 6502, LDA addr,X and/or STA addr,X produce additional phantom reads. In order to avoid those phantom reads to do i/o access, I used the "classic" approach of moving those reads from page $C0 to page $BF.
* Made use of BIT instruction to access InputFlags from firmware.
Doing the same for access from disk-based software would require selfmodifying code as there's not bit <addr>,x instruction.
* Removed push/pop from GetByte.
After the replacing the rol instructions with bit instructions with a recent chnage, the only reason left to save a to the stack was setting the OutputFlags. But that can be done using x.
* Added InputFlags check for consistency.
* Added support for an alternative hardware type.
The new hardware type has simple UART-type interface. Beside the two data registers, there are only the two bits to indicate readability and writability of the data registers.
* Added another comminucation interface implementation.
Use ACM CDC (or another proprietary) USB serial device for communication.
Currently VID / PID of a Raspberry Pi Pico SDK CDC UART are hardcoded - see https://github.com/raspberrypi/usb-pid
* Revert "Avoid unwanted i/o access."
Neither the original hardware type nor the alternative hardware type have any read and write i/o port share addresses. Therefore phantom reads aren't an issue with those hardware types.
This reverts commit ae5cb754fb9540794bdb5465a77e1263ca257539.
* Adapt to the different error signatures on Linux.
So far the code was only tested on Windows.
* Added implementation of the alternative hardware type.
The implemenation is based on a Raspberry Pi Pico - see https://github.com/a2retrosystems/A2retroNET
The new hardware type has a simple UART-type interface. Beside the two data registers, there are only the two bits to indicate readability and writability of the data registers.
* Modify the HD image for the alternative hardware type.
It is likely desirable to have two HD images for the two hardware types. And likely the apple2driver program should default to the right one based on its protocol setting. BUt given that the HD image(s) shouldn't be part of the actual Git repo anyhow, I don't do anything about this here and now.
* Fixed shell startup (?)
At least on the alternative hardware, this "blindly sending" a reset command causes the shell to be terminated right away:
The driver acknowldges the reset command with a zero byte - and that byte ends up being read by DumpOutput causing it to branch to endOutput.
Maybe that sending a reset command is beneficial on the original hardware. Then another .if is required. Or DumpOutput shouldn't quit on reading a zero byte - the shell handler doesn't seem to send it on purpose(?)
* Upate HD image with recent shell change.
* Fix shell shutdown (?)
At least on the alternative hardware, things happen this way:
1. The shell 'exit' command has ptyOut signal outputComplete and terminate. At this point, ptyIn is still blocked up to one second in ReadCharacter - and can therefore not react on outputComplete.
2. The outputComplete handler in ShellCommand sends a zero byte. This makes on the A2 DumpOutput return and the caller send a zero byte. ShellCommand must not return here as ptyIn is still blocked.
3. The zero byte from the A2 has ptyIn return from ReadCharacter, signal userCancelled and terminate.
4. ShellCommand can now return, but it must not send a zero byte, as the A2 is not expecting it - and will therefore later misinterpret it.
Maybe the original hardware needs another handling, then differentiation of behavior in shell.go becomes necessary.
* Moved boot text out of IIgs copyright message area.
Having the boot text start at the left border of the third line makes it look nice on the cold boot screen of all Apple II's - and there's where the user sees it for some time while waiting for the RPi to come up.
* Several adjustements:
- Get latest Go version as of now.
- Nowadays (?) GitHub 'git clone' seems to only work with a GitHub account. Therefore the zip download workaround. The becomes hopefully unnecessary soon with Go module magic.
- Use 'go mod tidy' to update .sum file for now.
- Error handling for an empty drive 2 is currently not exactly great, so download Total Replay for drive 2. Unfortunately there's no stable URL as of now.
- Use $USER and $HOME instead of hardcoded values.
- Removed deprecated syslog output directives.
* Added brief fork description.
* Added ProDOS-Utilities reference.
* Reverted back to using 'git clone'.
I've no idea why git acted up the other day :-( Now, everything is back to normal...
* Ignore Pico build directory.
* Updated from https://github.com/a2retrosystems/A2retroNET
* Updated from https://github.com/a2retrosystems/A2retroNET
At this point, nothing at all is done on an A2 reset. This can likely be improved. However, Apple2-IO-RPi doesn't seem to handle A2 reset exactly gracefully anyhow.
In general, it seems desirable to introduce some simple framing protocol - like SLIP - that allows to recover from an A2 reset in the middle of an Apple2-IO-RPi command execution.
Such a framing protocol would allow to introduce different frame types. One frame type could then be an A2 reset frame sent by the A2retroNET firmware.
* Make use of brand new stable Total Replay download URL.
Thanks to 4am :-)
* Fixed typos.
* Clone upstream ProDOS-Utilities.
My ProDOS-Utilities pull request was merged.
* Added support for boards without LED.
* Updated link.
* Adjusted to the current A2retroNET hardware.
* Removed support for the Pico W.
* Updated URL.
* Updated URL.
* Make use A2Pico library.
* Added link to A2Pico.
* Remove intermediates from repo.
* Build intermediates from Pico build.
* Have LED reflect status of logic ACM connection.
* Update upstream repo references.
* Adjust build instructions.
* Update README.md
* Fix build and update dependencies
* Fix binary comparison
* Fix firware bug on classic hardware
---------
Co-authored-by: Oliver Schmidt <ol.sc@web.de>
2024-02-06 03:49:09 +00:00
|
|
|
.endif
|
2021-12-28 14:49:12 +00:00
|
|
|
clc ;success
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
|
|
CMD: aschi "rpi"
|
|
|
|
CMDLEN = 3 ;Our command length
|
|
|
|
;
|
|
|
|
NXTCMD: .byte 0,0 ; STORE THE NEXT EXT CMD'S
|
|
|
|
; ADDRESS HERE.
|
2022-02-07 02:06:22 +00:00
|
|
|
|
|
|
|
|