A2DVI: Apple II Digital Video

54 posts / 0 new
Last post
Offline
Last seen: 3 hours 21 min ago
Joined: Apr 8 2026 - 20:39
Posts: 25
Noob question,  Is it

Noob question,  Is it possible to have the configuration utility reside on the Pico as a config.bas file instead of manually typing it in or loading from a floppy?

 

<code>

10 HOME : PRINT "ENTER A2DVI SLOT (1-7): ";

20 GET S

30 IF (S<1) OR (S>7) THEN GOTO 20

40 PRINT "LOOK AT YOUR A2DVI SCREEN!"

50 VTAB 21

60 S = -16256 + S*16

70 POKE S+15,11

80 POKE S+15,22

90 POKE S+9,0

100 GET A$

110 C = ASC(A$)

120 POKE S+9,C

130 IF C <> 27 THEN GOTO 100

140 POKE S+15,0

150 HOME : PRINT "GOODBYE!"

</code>

 

Offline
Last seen: 1 week 4 days ago
Joined: Mar 12 2026 - 13:12
Posts: 29
Not in version 2.0
Aurbo wrote:

Noob question,  Is it possible to have the configuration utility reside on the Pico as a config.bas file instead of manually typing it in or loading from a floppy?

 

 

 

I took a look into this (thinking the same thing). I agree that it would be a useful mechanism to be able to enter PR#X to launch the configuration utility. However, based on 30 minutes of reading, I believe to get it to work the !IOSEL line from the edge connector would have to be connected to the PICO. The REV 2.0 hardware doesn't do this. If you look carefully at the REV 2.4 image on the A2DVI github page, (no schematic, so have to try and interpret traces on the PCB) I think you can see that trace from PIN 1 of the edge connector heading off to the PROM that was used for version 2.4 .   I tend to think that a version with !IOSEL support (acting as an additional 256 byte PROM as part of the card being emulated) should be capable of that. But I'm not a dev on the project, so have little to no experience with the finer details of the code involved. (it was, afterall, only 30 (ish) minutes of investigation)Oh.. also just noted that v4.4 and 4.6 of the hardware, has the !IOSEL (and several other) signal routed to the PICO2. I think it safe to say.. EVERYONE was thinking the same thing... :) 

Offline
Last seen: 3 hours 21 min ago
Joined: Apr 8 2026 - 20:39
Posts: 25
So far, so good.  Still

Error, posted to wrong thread

 

Pages

Log in or register to post comments