Previous Thread
Next Thread
Print Thread
Page 17 of 56 1 2 15 16 17 18 19 55 56
rfka01 #91967 12/20/13 04:06 PM
Joined: Mar 2001
Posts: 17,215
Likes: 234
R
Very Senior Member
Offline
Very Senior Member
R
Joined: Mar 2001
Posts: 17,215
Likes: 234
Great, thanks for the info on the tables! That should make it easier to figure out how the 6805 program works smile

rfka01 #91968 12/20/13 09:44 PM
Joined: Dec 2013
Posts: 4
Member
Offline
Member
Joined: Dec 2013
Posts: 4
Hi everyone,

I think I can help with the LK201 as I have both the 8051 and 6805 variant PCBs here. I also have an EPROM programmer so I'll read the 8051 in at some point. However I've traced the wiring on the 6805 PCB and I pretty much know which pin goes where now. The keyboard matrix is the same for both variants. I've made a start on modifying dec_lk201.c and have got this at least partly working with the VT220. I've added the input ports for the keyboard matrix, the code to scan it, the code to drive the LEDs and some of the code for the SCI and SPI interfaces. I've tried joining it to the Rainbow but I'm having some difficulty working out how to (correctly) use device_serial_interface. Also the bytes being sent out via port 0x10 to the 8251 UART do not seem to be keyboard commands? Perhaps I did something wrong? I think between us we should be able to get this working.

I metioned the VT220, this is actually where I started. There are two variants of this: one with an 8051, two program ROMs and a character ROM and a later variant with an 8031 and a single program ROM. I have started implementing the earlier variant as that is the one for which documentation is available. It currenly passes about 20 of the (?) self tests, but the LK201 is going to be needed so I started looking at that.

I guess the next step will be to send some diffs to someone and hopefully they can help me with device_serial_interface and hooking this up to the rainbow to test it properly.

Matt

rfka01 #91969 12/20/13 10:02 PM
Joined: Mar 2001
Posts: 17,215
Likes: 234
R
Very Senior Member
Offline
Very Senior Member
R
Joined: Mar 2001
Posts: 17,215
Likes: 234
Matt: that's awesome! PM me and we'll figure something out smile

rfka01 #91970 12/20/13 10:57 PM
Joined: Jan 2012
Posts: 1,179
Likes: 17
rfka01 Offline OP
Very Senior Member
OP Offline
Very Senior Member
Joined: Jan 2012
Posts: 1,179
Likes: 17
Great news, Matt ... I just got a nice VT320 off Ebay for 20� ...couldn't let it pass ... now things like the P112 board are working in style smile


NCR DMV- DEC Rainbow- Siemens PCD- ITT 3030-Oly People- Acorn A5000- Olivetti M20
rfka01 #91972 12/22/13 12:28 AM
Joined: Mar 2006
Posts: 1,079
Likes: 6
L
Very Senior Member
Offline
Very Senior Member
L
Joined: Mar 2006
Posts: 1,079
Likes: 6
I have a vt320 here, getting the roms out to dump those looks to be a gigantic pain in the ass, they're in a metal cage which seems to be soldered to the pcb, underneath the tube.

I also have a C.Itoh CIT-220+ which looks like it might be using stolen vt220 or vt320 code, unclear. It uses some very odd chips for graphics control, though everything is standard JEDEC ROMs for actual character sets, main code, etc. I have it fully dumped, including the keyboard MCU. (and I have to thank Kevtris for desoldering all 125 keys from the keyboard in order to facilitate repairing it, which is now done. Someone had spilled coffee into it years before I got it and it wicked up into the key contact leaves of most of the keys, so pretty much nothing worked) The C.Itoh keyboard is far more repairable than the LK201 is (usually lk201s get scrapped when they die because the membrane goes bad) and uses real spring+leaf switches for the keys rather than a membrane like the LK201 does.

LN


"When life gives you zombies... *CHA-CHIK!* ...you make zombie-ade!"
rfka01 #91973 12/22/13 09:38 AM
Joined: Jan 2012
Posts: 1,179
Likes: 17
rfka01 Offline OP
Very Senior Member
OP Offline
Very Senior Member
Joined: Jan 2012
Posts: 1,179
Likes: 17
Hi LN,

looks like we have got the ROM ... it's 23-054E7 in this directory:

http://www.dunnington.u-net.com/public/DECROMs/

and the pcb pic at

http://www.vt100.net/dec/vt320/pcb

shows one ROM.

Robert


NCR DMV- DEC Rainbow- Siemens PCD- ITT 3030-Oly People- Acorn A5000- Olivetti M20
rfka01 #92979 02/19/14 06:09 PM
Joined: Apr 2012
Posts: 193
B
Senior Member
Offline
Senior Member
B
Joined: Apr 2012
Posts: 193
Rainbow.c: i now have a clue why MS-DOS 2.x crashes (and CP/M 1.1 boots).

One reason is that our interrupt handling looks incorrect. There is additional IRQ logic not reflected in our code.

Please see the attached image in my Dropbox:

https://dl.dropboxusercontent.com/u/37819653/SH_6_VECTOR_SELECT.jpg

The screenshots are taken from the Field Manual of the PC-100 B, and the vital clue came from RBCONVERT.ZIP (File: CONVERT-A-B).

Next thing is the wrong sector interleave (1:1) instead of the following (sector count from 0 to 9):
LOG. => PHYS 0, 2, 4, 6, 8, 1, 3, 5, 7, 9
PHYS. => LOG. 0, 5, 1, 6, 2, 7, 3, 8, 4, 9

This is valid for both CP/M and MS-DOS; only for tracks >= 2; counted from track 0.

Please advise what to do.
The current code base is increasingly difficult to understand.
Help is appreciated.

wink


Last edited by Bavarese; 02/19/14 08:18 PM.
rfka01 #92980 02/19/14 06:20 PM
Joined: Mar 2001
Posts: 17,215
Likes: 234
R
Very Senior Member
Offline
Very Senior Member
R
Joined: Mar 2001
Posts: 17,215
Likes: 234
Incorrect interleave shouldn't matter; software requests a specific sector from the FDC and it will fetch that sector. It's only a problem if the sectors in the image file aren't in the order the parser thinks they are (for instance due to a format that doesn't preserve that information).

The interrupt vector thing is interesting; what other hardware differences are there between the 100A and 100B?

Joined: Apr 2012
Posts: 193
B
Senior Member
Offline
Senior Member
B
Joined: Apr 2012
Posts: 193
A comparison...

RAM ADDRESSING / SIZES
> fixed 64 K RAM on board (instead of 128 K on board of PC-100 B)

> a maximum of 832 K RAM -with RAM extension board - (instead of 896 K on 'B')

ROM
> ROM 04.03.11 (for PC-100-A) in 3 chips (type 2764)
FA000-FBFFF (E89)
FC000-FDFFF (E90)
FE000-FFFFF (E91)


> PC-100B / PC100B+ has ROM 05.03 in 2 chips (type 27128) at memory addresses:
F4000-F7FFF
FC000-FFFFF


ROM DIFFERENCES (derived from my latest ROM disassembly)

(*) PC-100-B only. Not present in original PC-100 specification from March 1983.
0x1a and beyond are marked as 'reserved' there.
Code
$1f23 - (*) ROM_RomVersion       0x1a  /* DX,BP<-offset,seg of 8-byte buffer */
$1f66 - (*) ROM_ChangeVectorMap  0x1c  
$1fc2 - (*) ROM_RingBell         0x1e
$1fc8 - (*) ROM_GetSet7or8       0x20  /* AH<-function (1=get, 0=set);       */
                                       /* AL<-value (0=8, 1=7) (set only) :  */
                                       /*     value->AL (get only)           */
There is no documented way to emit bell sounds on the Rainbow 100-A (confirmed in Jeff Armstrong's blog). No hardware limitation of course: the beeper sits in the keyboard.

The 'A' model did not come with a hard disc, and there were no provisions in the old ROM to boot from HD directly.


LIMITS WITH OPTION BOARDS

GRAPHICS (when using uPD7220 Graphics option)
> limited graphics palette: 4 colors where with the B board you get 16.

80286 ACCELERATOR BOARD
> Suitable Solutions 286 accelerator board runs in either a 100B or a 100+, but not a 100A.

Note that i own neither a 100-A nor the fancier option boards. I am also more into software than hardware. Feel free to correct me. smile

Last edited by Bavarese; 02/19/14 09:05 PM.
Joined: Mar 2001
Posts: 17,215
Likes: 234
R
Very Senior Member
Offline
Very Senior Member
R
Joined: Mar 2001
Posts: 17,215
Likes: 234
SVN #27909 has IRQ management (I have no idea what the priorities are when more than one is signaled at a time but that can be easily adjusted) and the keyboard 8251's DTR line is connected to bit 7 of the IRQ vectors.

Let me know if that helps smile

Page 17 of 56 1 2 15 16 17 18 19 55 56

Link Copied to Clipboard
Who's Online Now
2 members (Kale, 1 invisible), 233 guests, and 1 robot.
Key: Admin, Global Mod, Mod
ShoutChat
Comment Guidelines: Do post respectful and insightful comments. Don't flame, hate, spam.
Forum Statistics
Forums9
Topics9,320
Posts121,923
Members5,074
Most Online1,283
Dec 21st, 2022
Our Sponsor
These forums are sponsored by Superior Solitaire, an ad-free card game collection for macOS and iOS. Download it today!

Superior Solitaire
Forum hosted by www.retrogamesformac.com