Here are some details of how to take a look at what is inside of character ROM or verify a character ROM bin file. The commands work well with the Apple II+ (rev. 7 or later) or any MC6845 or MOS 6545 character ROMs. Also, at the end are some commands to get a .bin file into a hex-dump format for the Apple II Monitor.
Dumping a character ROM
One of the simplest ways to dump an actual Apple II+ (rev. 7 or later) character ROM is to remove it and insert it into the ROM socket of a SuperSerial Card (SSC) in another Apple II. Then you can read the data into memory (the example assumes it is saved at $8000), and send it out to your Mac through another SSC. Unfortunately, you need two Apple IIs and two SSCs because neither the SSC nor the Apple II work properly with their ROMs removed. Once you have the monitor dump, you can convert it to a binary file with xxd like this:
xxd -r -seek -0x8000 characterROM.dump > characterROM.bin
Getting ROM files
If you want to use a different ROM file from what you have in your computer,
download the Apple II ROMs file from MacGUI, and open the file in your Downloads folder to unzip it.
Checking ROM files
To see the first character of a ROM file, open the Terminal and run xxd to make a short hex binary dump:cd ~/Downloads/APPLE\ II\ ROMS/APPLE\ II+/ xxd -b -c1 -l8 \ APPLE\ II+\ -\ 7341-0036\ -\ CHARACTER\ GENERATOR\ REV7+\ -\ 2716.bin
If you blur your eyes, you should see an @ symbol in the right block:
0000000: 00000000 . 0000001: 00011100 . 0000002: 00100010 " 0000003: 00101010 * 0000004: 00101110 . 0000005: 00101100 , 0000006: 00100000 0000007: 00011110 .You can make this easier to read by getting rid of all of the zeros:
xxd -b -c1 -l8 \ "APPLE II+ - 7341-0036 - CHARACTER GENERATOR REV7+ - 2716.bin" \ | sed -e 's/0/\ /g'
: . 1: 111 . 2: 1 1 " 3: 1 1 1 * 4: 1 111 . 5: 1 11 , 6: 1 7: 1111 .And even easier to read by:
xxd -b -c1 -l8 \ "APPLE II+ - 7341-0036 - CHARACTER GENERATOR REV7+ - 2716.bin"\ | sed -e 's/0/\ /g' -e 's/1/█/g'
: . █: ███ . 2: █ █ " 3: █ █ █ * 4: █ ███ . 5: █ ██ , 6: █ 7: ████ .Remove the "-l8" argument to see all of the characters, and you can see the problem with the standard ROM. There are 4 sets of uppercase and symbol/number characters (representing: inverse, flashing, normal, normal), but no lowercase! Apple included a bigger ROM in the II+, with the capability of holding lowercase characters, but did not include them. Fortunately, the ROM files you just downloaded have a lowercase character ROM included. Check it by: xxd -b -c1 -l8 -s 1800 \ "APPLE II+ - LOWERCASE CHARACTER GENERATOR - 2716.bin"\ | sed -e 's/1/█/g' and you should see:
00000707: 00000000 . 00000708: 00000000 . 00000709: 00000000 . 0000070a: 000███00 . 0000070b: 000000█0 . 0000070c: 000████0 . 0000070d: 00█000█0 " 0000070e: 000████0 . 0000070f: 00000000 .Yes! Looks good!
Converting to Apple II Monitor Format
Probably the easiest way to get these binary values into the Super Serial Card (SSC) ROM memory space is to use the Apple II Monitor. The Monitor can enter values into arbitrary address locations. The format for entering values looks like this:C200: 1C 22 2A 2A 2C 20 1E 00 C208: 08 14 22 22 3E 22 22 00Representing the hexadecimal memory address, ":", and then 8 data bytes in hex format. To generate the right format, with data starting at the Apple II+ $8000 memory space, we can use a command:
xxd -g 1 -c 8 -u -o 0x8000 "APPLE II+ - LOWERCASE CHARACTER GENERATOR - 2716.bin"\ | sed -e 's/0000//' -e 's/ .*//' | tr '[:lower:]' '[:upper:]' > ~/LOWERCASE_8000.monWe could use this LOWERCASE_8000.mon file to load the data to the $8000 address space, then use the Monitor to move parts of the saved data to the SSC. Unfortunately, we can't just use one address if we want to write directly to the SSC, in one step. The SSC firmware address space is broken up so that the entire 2K ROM will fit in the available Apple II I/O address space. Part is in the slot's IOSEL address space, and part is in the shared I/O ROM address space. Assuming the SSC card with the EEPROM is in slot 2, I used a few Terminal commands to get the right format:
xxd -g 1 -c 8 -u -l 256 -o 0xC200 APPLE\ II+\ -\ LOWERCASE\ CHARACTER\ GENERATOR\ -\ 2716.bin | sed -e 's/0000//' -e 's/ .*//' | tr '[:lower:]' '[:upper:]' > ~/LOWERCASE_SSC_S2.mon xxd -g 1 -c 8 -u -s 256 -o 0xC700 APPLE\ II+\ -\ LOWERCASE\ CHARACTER\ GENERATOR\ -\ 2716.bin | sed -e 's/0000//' -e 's/ .*//' | tr '[:lower:]' '[:upper:]' >> ~/LOWERCASE_SSC_S2.mon
The first xxd command is for the SSC's IOSEL address space. xxd gets the first 256 bytes of the bin file and offsets the addresses to match slot 2. The second xxd command scans past first 256 bytes of the bin file, and then offsets the remaining addresses to match the shared I/O ROM address space. Each of the commands pipes through sed to remove the leading zeros in the addresses and the trailing ascii byte representation. Then they pipe through the tr command to convert the addresses to uppercase hex (not totally sure this is needed), then outputs to a text file.
If you need the SSC card in another slot, edit the -o 0xC200 format string in the first command and change the '2' to whatever slot you need.