The 440 board is similar in many ways to the C1P video display. It could be used with the OSI400 CPU & 430 I/O, or with the OSI500 CPU along with ASCII or serial keyboards using various ROM configurations. I can't help you with too many of the specifics of the 440 boards, having never had one, but utilizing the schematics from BillDrom I have emulated the board in WinOSI, both color and 128x128 dot graphics using my best guesses. (Color utilizes the upper 2 bits of character RAM, and 128x128 graphics uses 2K of 420C @ D400+.)
Of course on a real display, lines would be lost due to overscan.
Wiring directly to RGB CRT guns is scary, but I think you could drive an old RGB NTSC monitor instead with a few modifications (?)

- Possible color + graphics display
- screen0001.gif (377.33 KiB) Viewed 5772 times
And the silly BASIC program I used to test these features:
Code: Select all
10 I=54272: S=13*4096
15 FOR J=I TO I+2047:POKE J,0:NEXT
20 DIM P(100): DIM C(4):C(1)=0:C(2)=64:C(3)=128:C(4)=192
25 FOR J=S TO S+1023:N=(INT(RND(99)*4))+1:POKE J,C(N)+32:NEXT
30 FOR N=0 TO 99
35 P(N) = (INT(RND(N)*2048)) + (INT(RND(8)))/10 + I
40 NEXT N
50 N=INT(RND(100)*100)
60 J = INT(P(N))
70 X = (P(N)-J)*10
81 IF X=0THEN T=128
82 IF X=1THEN T=64
83 IF X=2THEN T=32
84 IF X=3THEN T=16
85 IF X=4THEN T=8
86 IF X=5THEN T=4
87 IF X=6THEN T=2
88 IF X=7THEN T=1
89 IF (PEEK(J) > 0) THEN POKE(J), 0:GOTO 100
90 POKE(J), T
100 FOR T=1 TO 100: NEXT
110 GOTO 50
Your board looks like it has six 2102s installed, and with the 2513 CHARGEN present will give you a 64 character uppercase ASCII display.
If you look on
vintagecomputer.net, they have a picture of a 440 that looks like it has been modified with 8 2102s for an 8 bit charset with perhaps an OSI chargen ROM?
I do have this 440 picture that looks like it had an ASCII keyboard attached. Does your Sanders 720 present an ASCII output with strobe?

- OSI440 old ebay
- OSI440-05.jpg (296.64 KiB) Viewed 5772 times
The picture from billdrom has a 440 board with an RF modulator or some sort of video adjustment going on, yours looks to be a composite output.

- OSI440 billdrom
- CIMG1774.jpg (181.7 KiB) Viewed 5772 times
Since your board has the sockets installed, was it once used with graphics options, or was the builder just filling all the IC positions? I once came across this one which also has those positions filled with sockets.

- OSI440 with sockets
- OSI440-06.png (3.68 MiB) Viewed 5772 times
The 420C 4K board was used as general RAM expansion. My first C2P with 500 board used it to get to 8K of RAM as the 500 board had 4K to start with. I did install the switch and battery backup to hold programs in memory for a while when powered down. I've also seen them in floppy based C3 systems using CPM where CPM expects RAM at $D000-$D7FF
Cheers,
-Mark