I tear down an old Philips VideoWRITER to see how it works
To make the experience fit your profile, pick a username and tell us what interests you.
We found and based on your interests.
critterBoot.zipROM + Arduino and JavaScript code to upload and run custom softwarex-zip-compressed - 7.78 kB - 01/19/2019 at 08:21 |
|
|
DS365N.pdfHigh current driverAdobe Portable Document Format - 215.62 kB - 08/07/2017 at 19:17 |
|
|
HEF4538B.pdfTimerAdobe Portable Document Format - 777.20 kB - 08/07/2017 at 19:17 |
|
|
VideoWriter_NL65_roms.zipROM dumps of NL65 VideoWriter softwarex-zip-compressed - 39.19 kB - 07/10/2017 at 18:20 |
|
|
VideoWriter_NL67_roms.zipROM dumps of NL67 VideoWriter softwarex-zip-compressed - 39.25 kB - 07/02/2021 at 09:56 |
|
While still working on finishing the documentation for CritterBoot and the display controller I'm also working on the next part of the machine that needs documenting: the disk controller.
It has been a confusing and frustating process to get the WD1770 disk controller to coopperate. Mainly due to figuring out how the interrupts work and getting te timings to the disk right. But for now I have some routines that allow me to seek and read sectors from the two diskettes I have. I also wrote a quick and dirty serial out that allowed me to completely dump the two disks.
Before anyone asks, I'm not going to share these dumps because they contain some very personal documents of previous owners. I will create a new disk with an example document and share its dump here.
I have no idea yet about the disk format or file format that the VideoWriter uses, but these dumps will be helpful.
Before I start this log on the keyboard I should mention that I'm in the process of putting all of my writings and software on the Video Writer on a small website. The following is an almost direct copy of what will be the article about the keyboard...
In this section we'll take a look at the VideoWriter's keyboard and how the unit interacts with it. The keyboard is very nicely layed out with a number of function keys specific to the word processor, for example to do spell checks or to get access to contextual help screens. Inside the keyboard we find a NEC D8049HC microcontroller. It has 2KB of program ROM and 128 bytes of RAM. The microcontroller scans the keyboard switches and handles the communication with the VideoWriter. A nice surprice was to find that it also implements a FIFO buffer that can hold up to 20 keystrokes. If this buffer is full then no more keys will be added until one is read out. When holing a key down it will start to repeat after a short delay as you would expect.
Read more »After a long period of inactivity I'm back working on the Video Writer! More will come soon, but here is a very short progress update:
The holiday card below is a screenshot of a little program I wrote and uploaded to the VW
It's time to start looking at the IO map of the VideoWRITER. With the help of my trusty multimeter I have been probing around the main board and I've drawn the following schematic.
Let's start looking at the left part of the schematic before the 74139. This is where the /RD and /WR signals for the video controller (VDP) are generated. Notice that there is no chip select signal for the VDP in this schematic. This puzzles me since the only signal going to the VDP that comes close to a /CS signal is the CPU's ALE. But that means that any IO operation also ends up at the VDP as far as I can tell now. Let's park this for now and continue with decoding the rest of the IO.
The rest of the IO addresses are decoded using the second half the 74139 we saw before when decoding the memory. This half of the 74139 is enabled when we're doing an IO operation and A7 is low. It looks like A7 is responsible for choosing between addressing of the VDP and other IO. A6 and A5 determine the device that is selected by the 74139. This decodes to the following:
A7 | A6 | A5 | Selected device |
0 | 0 | 0 | Floppy Disc Controller (FDC) |
0 | 0 | 1 | Latch B (IC31) only when /WR is active also |
0 | 1 | 0 | Latch A (IC30) only when /WR is active also |
0 | 1 | 1 | IO / Timer (IC15) |
1 | x | x | Video Display Controller (IC15) |
Just a thought... Could A7 be used as an active high chip select line for the VDP? It's hard to tell without the datasheet of the NCR 7250, but it would make sense unless there is some magic happening with the ALE line going to the VDP chip. This is something to look into for the next log...
CPU Signal Lines
While we're at it let's take a closer look at the signal lines coming from and going to the CPU. That allows us to say something about the various interrupts that are generated in the system as well. Once again I buzzed-out the schematic and drew it on paper.
Reset
Starting off with the reset circuitry, the CPU has a /RESET IN and RESET OUT line. The /RESET IN line is what resets the system when pulled low. The inverse of this signal is put on the RESET OUT line to generate a reset pulse for the various devices connected to the CPU. In our case it resets all the IO chips FDC, VDP, IO / Timer and Latches when power is applied.
Interrupts
Let's continue at the bottom of the chip now where the various interrupt signals come in. Starting off with the /NMI (Non Maskable Interrupt) pin. The NMI works the same as for a Z80. When interrupts are enabled and this pin is pulled low the CPU will jump to an interrupt service routine at address 0x66. In case of the VideoWRITER the /NMI signal comes from the timer output of IC25 (IO / Timer). Every time the timer rolls over an interrupt is generated.
In addition to a Z80 compatible /NMI the NSC800N also has a Z80 compatible mode 1 interrupt that jumps to 0x38 when /INTR is pulled low, but this is not used in the VideoWRITER.
Besides these two interrupt signals the NSC800N has three restart signal inputs /RSTA, /RSTB and /RSTC that make the CPU jump to 0x3C, 0x34 and 0x2C respectively. The VideoWRITER uses the first two and they are controlled by the floppy disc controller. With /RSTA the FDC tells the CPU about the status of its data register and /RSTB tells the CPU that the FDC has completed its last command.
Machine states
The final signal I want to highlight is the S1 line. Together with S0 these determine the bus status. As you can see this controls the R/W line of the FDC. But why is S1 used instead of the /RD and /WR lines only for the FDC? This is not clear to me. Using the S0, S1 and IO/M lines is probably the intended way of decoding memory and IO read / write states, but using other lines has the same effect. Maybe the designers were just trying it out and said 'screw it!' for the other devices and went with a Z80 like way of decoding read / write states. Anyway at the NSC800N datasheet and the table below it shows that S1 can be used as an IO read signal, but only if there is also an IO select signal going to the device.
S0 | S1 | IO/M | /RD | /WR | Machine Cycle... |
Continuing my VideoWRITER autopsy, this time I want to learn more about its memory configuration. Last time we already saw that the system holds 16kb of RAM and a total of 64kb of ROM, leading me to believe that we may also find some bank switching circuitry today. I did some poking around with my multimeter on continuity to trace the various signals and drew some schematics on paper.
Chip Selects
I will start by reverse engineering the chip select lines of the memory. This should give us a rough idea of the system's memory map as well since usually a particular memory chip is selected based on its address in the memory map. I will start from the /CE pin of ROM A. Running the other probe of my multimeter along the pins of other chips on the board until I hear a beep. And hey, what do you know it starts beeping at the output of an AND gate. Now to trace the two inputs of this gate... Turns out they go to two outputs of an 74139 (a 1 out of 4 selector).
The 139 has A14 and A15 from the CPU as its address inputs, so this means that the memory is divided up into four blocks of 16kb. The /E (enable) line of the 139 goes to the CPU's /M (memory select) line, so the 139 is active when the CPU wants access to the memory. After tracing the circuit I come to the following memory map in the table below. ROM A is active when either /Q1 or /Q2 of the 139 is active, ROM B is active on /Q2 and the RAM on /Q3, but the RAM is not as straightforward as the ROMs. More on that later...
A15 | A14 | Memory |
0 | 0 | ROM A |
0 | 1 | ROM A |
1 | 0 | ROM B |
1 | 1 | RAM |
The Address Bus
Let's now take a look at the address bus of the VideoWRITER, because it's a bit more involved than that of a normal Z80 system. As I noted last time the NSC800N shares the lower half of its address bus with its data bus. So in order to separate the two what they did was use a 74373 (an 8-bit latch) to hold the lower 8 bits of the address bus. The inputs of the 373 connect to AD0 through AD7 of the CPU and the CPU's ALE line is connected to the latch pin of the 373. Thus when the CPU's Address Latch Enable line goes high the lower half of the address is copied into the 373. The /OE of the 373 is tied to ground, so it's always holding the current address on its output.
From now on I will refer to the address bus as the combined output of the 373 and upper address lines of the CPU as A0 through A15.
ROM Addresses
Now we know how the address bus is set up we can take a look at how the ROMs are connected. Starting with ROM A we find nothing unusual. A0 through A14 are tied together as you'd expect. For ROM B A0 through A13 are tied to the address bus, which makes sense since it can only use 16kb according to the memory map we found earlier. What about A14? Does it go to Vcc or ground to disable one half of the memory? Nope. It goes to pin 39 (PC2) of the D8156 IO controller. That means that the upper and lower 16kb of ROM B can be exchanged in software and the bank switching mystery is solved :).
RAM Addresses
This is going to be the complicated part of this log. We saw that the VideoWRITER uses two 16k x 4 DRAM chips for its RAM. We also saw that in order to make a full 8-bit data bus one chip serves the upper four bits and the other the lower four. This means that all the signals going to the chips are the same for both.
To select an address of these DRAMs you need to first select a row address, followed by a column address. In this design this is implemented using two 74157s (2 to 1 line data selectors). These are used to output the row or the column address depending on the select input. To know when the row or column is selected we have to go back to schematic 1. Above the RAM /WR output you see that there is another output going to the select line of the first 157. Following the logic gates from the schematic, worked out below, we can deduce that when /Q3 is low a column address is selected and when /Q3 is high a row address is selected. ...
Read more »This time to take a look at the main board of the VideoWRITER and take a first guess at how it works. Let's take a closer look at the 7 big chips in the middle row of the board rom left to right. I added the datasheets of all chips (when available) to the project page.
D8156HC-2 - IO controller
This is probably the controller for the printer, judging by its location on the board relatively close to the printer connector in the top left corner of the board. This chip has three I/O ports (two of which are 8-bit and one 6-bit wide), a 14-bit timer and 256 bytes of static RAM. I hope to find out later what each of the ports on the chip is used for and confirm that it's used to control the printer. It's probably also used to communicate with the keyboard. The 8156 uses a combined address and data bus just like the CPU, as we will see in a bit.
HN27C256-20 - 32kb x 8 EPROMs
The next two chips are two 32kb EPROMs that contain the VideoWRITER software. This brings the total to 64kb of ROM, which contradicts the Wikipedia article that states that the system only has 16kb of ROM. This amount of ROM also suggest that there is probably some bank switching going on if the full 64kb is used. That is beacause the CPU , which is going to be a Z80 clone, can only address a maximum of 64kb of memory and there must be some RAM on this thing as well. Spoiler alert: there is 16kb of RAM. So maybe one of the ROMs is being bank switched to select either the upper or lower 16kb of ROM to leave room for the RAM. We will investigate further in a later log...
NSC800N-3I - CPU
Yes, this is a Z80 clone. However it is only a clone in a sense that it has the same instruction set. The pinout of this chip is completely different of a normal Z80. The pins on the left side of the device are all the address and data lines neatly ordered. The NSC800 has a combined address and data bus. This means that the lower 8-bits of the address bus are also used by the data bus. To select between the two the CPU has an ALE pin that is high when these 8-bits are to be used as the lower 8-bits of the address. The right side of the chip is completely dedicated to control signals like ALE, Read Enable, Write Enable, Memory / IO selection etc. It looks like this CPU is probably going to be harder to work with than a regular Z80, but also this is something we will find out later... From the datasheet we can see that the CPU runs at 2.5MHz, which means that the 5MHz clock from the nearby crystal must be divided by two somewhere.
HM48416AP-15 - 16kbx4 DRAMs
Next we take a little side track to take a look at the two DRAM chips below the CPU. These are two 16kb DRAMs with a 4-bit wide data bus. It makes sense if one of these serves the upper 4-bits of the CPU data bus and the other one servers the lower 4-bit half. So it wouldn't surprise me if I will later find that the address lines of these chips are tied together to form a combined 8-bit data bus.
WD1770-PH - Floppy disk controller
Now this is an interesting chip! We are looking at a Western Digital floppy disk controller. This chip apparently needs only a minimal number of external components to communicate with a floppy disk drive and it can also format floppies using various formats. This short description is not doing it justice, so it's definitely something for a later log.
NCR 7250 PY - Display controller?
For this next one all my searches have come up empty. I don't know yet what it is, but I'm fairly sure we're looking at the display controller here, since it's the only major component still missing.
HM6116-4 - 2kb x 8 SRAM
More RAM? This is probably used by the nearby display controller as its video memory. The display is probably not a bitmap display, but rather character mapped. This means that the RAM will contain the character codes of what is shown on screen and that the display controller maps these codes into a pattern to show on screen using its internal font bitmap. The size of 2kb seems a bit small though,...
Read more »Let's start taking apart the VideoWRITER and see what boards we will find. I won't go into too much detail on the boards in this log, just a quick first look at them.
After removing the cover let's start by discharging the CRT. It probably holds little to no charge since it's been switched off for a while, but I'd rather be safe than sorry. I have my trusty screwdriver connected to a length of thick wire and an alligator clip at the other end for this job. I connect the aligator clip to some of the metal frame and squeeze the screwdriver under the anode cup of the CRT. No clicks or pops from this one that suggest a charge, but I always repeat this process at least ones after a minute or so just to be safe.
Power Supply
Ok now we can safely start touching things and taking the boards out. First up is the power supply. Just two screws to remove here and the PCB comes out. I should mention that this is the second time that I remove the power supply. When I was testing the VideoWRITER a couple of weeks ago before putting it up for sale one of the caps violently exploded. There was a lot of smoke and that special smell of burnt electronics. Luckily I had a spare cap in my parts bin so I was able to replace it (it's the red cap in the top middle of the board). The power supply was working again, but whether there are still other problems with this board that caused the cap to blow is still a mystery.
Monitor Chassis
The monitor chassis almost made me go "aww that's cute" just because it's such a small and simple looking board compared to other monitor chassis's I've seen. Of course it's just a monochrome CRT, but for example up to now I've only seen assemblies where there is a neck board that plugs into the CRT instead of just a plug. Also all the common adjustment pots for the video signal are there. The board has a 10 pin edge connector that connects to the main board of the VideoWriter. It would be interesting to see what the pinout is of that one. What intrigued me was finding a 556 (dual 555) timer chip on the board. Maybe for some video signal timing?
Printer Interface
This board was actually not found under the cover, but directly under the printer mechanism. It's not very interesting I think. It connects from the main board through a big ribbon cable and from there goes to the motors, paper feed buttons, printing contrast slider, cartridge cradle, end stops and paper sensor. I'm just stalling for the best part...
Main board
The main boad of the VideoWRITER is very interesting I think. I will spend the next logs on it. For now enjoy the board still covered by its shield and the other components spread over the garden table. But you can tell that there are at least two rom chips on the main board peaking throught the shielding. You can also see what remains in the unit: the CRT and the floppy drive.
First let's start off with some history or introduction of the VideoWRITER, because knowing myself if I don't write this now I never will.
The VideoWRITER is a word processing machine with built-in screen and printer introduced in 1985. Supposedly it runs on a Z80 clone and has 16kb of ROM and 16kb of RAM. Documents are stored on 3 1/2" floppies. When it was new it was sold for $799.
The screen is a monochrome amber display that is noticeably wide. When the machine is turned on it is split into two halves. The left half that shows the text editor, settings and document properties and a sidebar on the right that shows you menus, hints and the functions of special keyboard keys. Also the sidebar is always in inverted video to make is stand out. I guess that that's what they mean with the 'DDS - Dual Display Screen' in the bottom left of the screen cover.
Editing documents is very basic by today's standards, so don't expect any fancy fonts such as Comic Sans ;). There is only one built-in font that you'll have to make due with. Changing the font is actually just changing the text style to bold, italic, underline, sub- or superscript. Other layout options include text alignment and... that's all. Apart from that the editor shows a ruler at the top of the screen and special characters such as new lines are also shown.
It prints on standard A4 paper using special ink ribbon cartridges and some thermal printing process. According to the Wikipedia article you can also use it as a thermal printer when you print on thermal paper without the cartridge. I was quite surprised that my VideoWRITER was still printing after many years in a warm attic.
The keyboard is small, yet comfortable to type on. It has a number of special keys that allow you to change the font, undo, or do a spell check (if you have the diskette that contains the dictionary that is). The keyboard connects to the main unit using an RJ14 phone style connector.
Documents are saved on 3 1/2" floppies. The machine will look for one when you switch it on and ask you if it's ok to format it if necessary. I don't think the VideoWRITER floppies are formatted to be PC compatible and probably can only contain 360 kb, or 720 kb at best. Maybe we will find out later.
Next time let's lift the cover and see what we find.
Create an account to leave a comment. Already have an account? Log In.
I'm doing a capkit on my Philips VideoWRITER 250 (NMS-3040). Here are the capacitors value for the PSU (Astec AA13221) :
*All caps are originally 85°C*
C5 250V 100µF (enshrouded into heat shrinkable sleeve for isolation (600V))
C6 250V 100µF
C7 250V 100µF
C8 250V 100µF (enshrouded into heat shrinkable sleeve for isolation (600V))
C17 16V 1000µF
C18 25v 470µF
C19 16V 1000µF
C20 (populated by a resistor (R37))
C21 (non populated)
C22 16V 2200µF
C23 16V 2200µF
C24 16V 2200µF
C25 (non populated)
(FIY Fuse is 250V 2.5A)
Kinda wish the dev would post the source code so my dream of a terminal in orange plasma on Linux become a reality, kinda sad the dev's probably occuped with life or moved on to do it. I know 2-3 persons who would totally do it.
Hi, i wanted to use the keyboard has a USB keyboard on my desktop and i wanted to repurpose the Magnavox VIdeowriter Display has a Linux Terminal, i have seen that you have reverse engineer the serial port but did not seem to have uploaded anything about it yet. Would it be possible for you to talk about it when you have some free time ? Thank you.
I had the main board for one of these left around and finally got a TL866II so I decided to dump the ROMs. Just digging through bins of stuff I've torn apart to use for parts and found these two ROMs and decided to dump them and put them out there and came across this project as well.
ROMs here:
https://archive.org/details/videowriter-rom-1-ic-3-hn-613256-p
similar devterm https://www.clockworkpi.com/product-page/devterm-kit-a0402
I discovered a website called MacDisk that hosts a low-level disk reading program that supposedly can read the Videowriter's disks.
https://www.macdisk.com/lecten.php
The website also boasts the ability to get the data off of the floppies and convert them into usable / readable text.
https://www.macdisk.com/conven.php
Now, they don't charge for Lecten which reveals the files off of the Videowriter, but they do charge for the Converter that converts the file to a usable file-type. I can't afford to pay to read the files off of my videowiter as of this moment to test them out, and they require a 16 bit version of windows (95 / 98 / ME) to run.
Hopefully these are of any use.
Is there perhaps a way to capture the Video Writer's raw video output? Not too dissimilar from screen grabbing? I own a Magnavox Video Writer, and I love it. It's a beautiful little machine and I use it regularly. This project caught my attention, and I'm amazed by the things you're doing with it.
Some information about how to read the VideoWriter disks is here:
https://github.com/DavidJRichards/VideoWriter
hth David.
Thanks! That's some useful info. I could give that MSX program a try some time
You're welcome Maarten. Do you have any rom disassembled yet? I would like to know more about the boot process and how the disk is accessed. Are you able to make an image of your disk to analyze? I'd like to see a dictionary disk. Kind regards, David.
Hi David,
I have both A and B roms of version NL65 and NL67 disassembled in IDA. I have distilled the most important parts of the boot process. For example initialization of the display controller, IO and interrupts.
Over the holidays I started to look into the disk controller. Though so far I've only been able to sometimes read raw sector data from a disk. I think I'm still missing something in my interrupt handling code... I hope I can make an image of a test disk soon, but unfortunately both my VWs don't have their dictionary disk anymore. I'd also like to see one.
I'm going to put my CritterBoot code + docs on how to use it on Github later this week to replace the old Arduino code that's still here (it's convoluted and I forgot how it works).
Best regards, Maarten
The eproms in my system are most likely later and different, I shall try disasembling them, starting with the dictionary eprom. I have found a comprehensive tool for this here:https://metacpan.org/source/PSCUST/CPU-Z80-Disassembler-0.07 it uses a perl program to define the sections and files, output a source file which may be re-assembled. The test program binary shown in the photos ...
data db 21h,0Fh,C0h,7Eh,FEh,00h,28h,05h,D3h,F5h,23h,18h,F6h,18h,FEh,48h
db 65h,6Ch,6Ch,6Fh,20h,77h,6Fh,72h,6Ch,64h,21h,00h
processed by the disassembler can be made to generate the cource file like this:
org $C000
START:
ld hl, HELLO
PRINT:
ld a, (hl)
cp $00
jr z, DONE
out ($F5), a
inc hl
jr PRINT
DONE:
jr DONE
HELLO:
defmz "Hello world!"
; $C000 CCCCCCCCCCCCCCCBBBBBBBBBBBB
; Labels
;
; $C000 => START DONE => $C00D
; $C003 => PRINT HELLO => $C00F
; $C00D => DONE PRINT => $C003
; $C00F => HELLO START => $C000
using this short perl program:
#!perl
use strict;
use warnings;
use CPU::Z80::Disassembler;
my $dis = CPU::Z80::Disassembler->new;
unlink "hello.ctl";
CPU::Z80::Disassembler->create_control_file("hello.ctl", "hello.bin", 0xC000);
$dis->load_control_file("hello.ctl");
$dis->memory->load_file( "hello.bin", 0xC000);
$dis->code(0xC000, "START");
$dis->labels->add(0xC003, "PRINT");
$dis->labels->add(0xC00D, "DONE");
$dis->analyse;
#$dis->defb(0xC00F, 13, "HELLO");
$dis->defmz(0xC00F, 13, "HELLO");
$dis->write_asm("hello.asm");
I'm still learning how to use this tool, in paticullar the control file, hth David.
p.s. one document I have seen sugests that a utility program can be loaded from disk, this must be one way to put arbitary code into the device. Also, the sheet feeded connection on the rear contains an input and output port together with a 12 volt supply, this could be a way to add data communications without opening the box.
Greetings everyone, I'm hoping to get a later 4460 version shortly, I'm looking forward to trying to use it as a monitor or terminal. Perhaps add a uart and some terminal software into a rom. Critterboot looks very useful, how is the Java in the zip archive used? Kind regards, David.
Update, 4460 arrived today, looking mint. some photos here: https://photos.app.goo.gl/V93yT3oaBiq8MJiZ6
It includes a spell check rom in a combi pack cartridge.
I see it can be expanded to have a parallel printer port too.
I'll play with it a bit and then see how to remove the roms for examination/replacement.
David
Nice to see an update :) post details soon, though, please!
its looks so cyberpunk, I think it is amazing device, that I could you everyday, to write stuff, did you really disassembled it completely?, I from Aliens movie.
I disassembled it to reverse engineer it and then I put it back together. I gave it a custom ROM that allows me to run custom software on it
Hi ziggurat29,
yes - I like beer, but unfortunately I'm located in Germany.
As you can see, <ctrl><enter> works from here too, thank you for this information.
Could you send me a link for the service manual?
Can I help with disassembly or are you already done?
Are you interested in the binaries of my ROMs (I have a different version than Maarten)?
Well, when I saw your work, I started to unmantle my own videowriter instead of trying to sell it on ebay. My machine has one fault in that the vertical deflection of the video-control-board is powerful enough (too low voltage) so that the display shows really very small characters. I don't know at what stage your works are, but it looks like you do not have concrete plans of how to change the hardware to be ready for CP/M? Do you have more information about the pinout of the 50-pin connector to the printer? When you try your custom ROMs, do you still use the CRT as display? If yes, the mainboard is not very easy to reach, as long as the CRT is in it's place... Or do you use a different display like an LCD?
Sorry to butt in, but thank you so, so, so much for the DataBook for that NCR chip - it really is a huge help. I can't offer much in the way of a token for that appreciation, unless you are in Texas, USA, and like beer, but one small thing I can mention is this: if you recondition your typing to use 'ctrl-enter' instead of just plain 'enter', then you can make paragraphs in your messages. Oddly, in other spots on this site there is a checkbox option to accept 'enter' properly. If you check it there, it becomes sticky. (But also oddly, in that same section you cannot edit sent messages, and attachments are... not! Perhaps someone needs to hack hackaday....)
Lastly, Maarten said he found a service manual to one of these models. At least two are know, this one, and a later one with a gate array. Even if yours is this model, with discrete logic instead of the gate array, I'd be fairly confident that the video section is electrically the same. The service manual might help you figure out what is going wrong on your board, so you can restore it (almost certainly a capacitor is aging; nice that it is aging gracefully in your instance, but it won't forever).
Sorry, I'm not used to omit the <CR>-key.... Have you ever thought about converting the main PCB into a CP/M machine? Would be some work to do, starting with the memory. e.g. ROM1 socket 32k EPROM, ROM2 socket 64k (128k) SRAM, DRAM disabled. ROM1 for bootloader or complete CP/M. Boot process: move CP/M to it's place in SRAM (LDIR would do), switch of EPROM and hand over to CP/M in RAM....?
Thank you so much for that link! This will be a great help to really understand the machine. My plan is to indeed mess with it and eventually make it into a more general purpose computer or terminal. Maybe a one running CP/M :). I'm getting a lot of help from Ziggurat29 who you will find among the comments. He is helping out with reverse engineering the ROM dumps and we are now getting close to experimenting with some custom ROMs. I can't keep up with writing project logs anymore so there is still a lot more progress to report on :)
Next: My comment. You did a very good job in backengineering the main PCB
Hi, first of all, for the NCR 7250 CRT Controller, look for "1985_NCR_Microlectronics_Data_Book" and you will find a PDF for download from bitsavers.
Become a member to follow this project and never miss any updates
how did you open it? I have with vhold problems and can't figure it out.