-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a skeleton driver for DEC MicroVAX 3100 #13331
base: master
Are you sure you want to change the base?
Conversation
New systems marked not working ------------------------------ MicroVAX 3100 [OldComputers ES]
src/mame/dec/microvax3100.cpp
Outdated
ROMX_LOAD( "dec89_23-116e8-00_system_rom_lo_word.e24", 0x00000, 0x20000, CRC(69ef8cf5) SHA1(a59a500921278dc356a519cb435641426c844779), ROM_NIBBLE | ROM_SHIFT_NIBBLE_LO | ROM_SKIP(1) ) | ||
ROMX_LOAD( "dec89_23-117e8-00_system_rom_hi_word.e25", 0x00000, 0x20000, CRC(df572ac3) SHA1(5e91d0f4fc8442e3ebc2424d9f85078ba00d2de5), ROM_NIBBLE | ROM_SHIFT_NIBBLE_HI | ROM_SKIP(1) ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this loading is correct. These are supposed to be 65536x16 EPROMs, not 131072x4.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed!
src/mame/dec/microvax3100.cpp
Outdated
|
||
|
||
// YEAR NAME PARENT COMPAT MACHINE INPUT STATE INIT COMPANY FULLNAME FLAGS | ||
COMP( 1989, mvax3100, 0, 0, microvax3100, microvax3100, microvax3100_state, empty_init, "Digital Equipment Corporation", "MicroVAX 3100", MACHINE_NOT_WORKING | MACHINE_NO_SOUND) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately this is not specific enough, since DEC released several different (though feature-comparable) systems under the "MicroVAX 3100" name. The PCB description suggests that this one is a Model 10 or 20 (there was very little difference between these two).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed! It's model 10. We'll dump a Model 20 soon
New systems marked not working
MicroVAX 3100 [OldComputers ES]