Wednesday, June 12, 2024

Strings or Compact directory utility for C64


Directory listings scrolling by too fast?  Want to scan program for string literals?  Here's a stupid (sometimes useful, definitely ugly) utility I created in the monitor for both scenarios.  Compact display and pauses every 24 lines.  Attempts to avoid control characters.

Note: operates on whatever loaded program is in memory, assuming BASIC. 

Shown loading into tape buffer (828), can be relocated. 

This source is an example of parsing a BASIC program.  The beginning of BASIC is grabbed from $2B/2C, and each line of the program is iterated through traveling its linked list ending with a null pointer.  In each line, a string starts with double quotes and ends with double quotes or end of line (zero or nul character).  Multiple strings per lines are possible.   Other memory addresses used include toggling the reverse flag ($C7), setting quote ($D4) and insert ($D8) modes, and counting each time at the left column ($D3).  Outputs string characters via $FFD2, and waits for a key press via $FFE4.

This is a short program that can be studied.  I hope you find it useful and informative.  Enjoy!

Link: strings.prg
Copyright (c) 2024 by David R. Van Wagner
MIT LICENSE

Sunday, June 2, 2024

BANKTEST for C64

While adding banking support to my own C64 emulator back in the good 'ole days (April 14, 2020, maybe only good for hunkering down on retro stuff), I also wrote a test program to help verify the results.  This may help you visualize how you can access more RAM and ROM on the C64.

The program works by switching to the RAM only bank writing a signature high byte to four addresses, then cycles through the standard list of banks reading the value at those locations.  Of course the first line for bank zero shows the bytes as expected.  But the other banks tell a different story.

A000-BFFF is BASIC ROM.   Appears ROM is active in banks 3 & 7 only, otherwise is RAM.

C000-CFFF is always RAM.

D000-DFFF is usually I/O (banks 5-7) including color RAM at D8000 (notice the high nibble changes in this run).  May also appear as RAM (banks 0 & 4), CHAR ROM (banks 1-3).

E000-FFFF is BASIC ROM (banks 2, 3, 6, 7), otherwise RAM (banks 0, 1, 4, 5).

It is interesting to see the similarities and differences in this chart.

The key code to switching banks includes

        sei

        lda $01

        and #$f8

        ora #bank_selection

        sta $01

        rts

Only clear the interrupt flag (cli instruction) once you have returned to the normal bank (7) so IRQ vectors and the KERNAL/BASIC ROMs will work as expected.


Links

Sunday, May 26, 2024

LCD version of 6502 emulators ported to Windows

 

LCDs and Windows too!

Now the c-simple-emu6502-cbm unified branch that works with LCD systems has been ported to Windows!  This is an emulator that includes a feature to switch between various popular Commodore 8-bit models from the BASIC prompt.

You may ask yourself, hey self, wasn't Windows already a supported system?  And you could answer, yes self, it was.  But only in text mode.  If you wanted to run Commodore BASIC from a command prompt, yes you could do that.  If you wanted to run this emulator with the nifty "GO 128" command in a graphical environment you were required to use those smallish LCDs (well the 7" isn't too smallish).

Now, by porting this C++ project back to Windows again, using GUI elements, it can now look more like a Commodore.  The fully resizable window, and keyboard support make it feel like you have a Commodore right in front of you.  You virtually do!

For now, you need to compile the project in Visual Studio 2022 (Community Edition should work just fine).  It probably also works from Visual Code, but I haven't attempted that yet.

Dependencies include a roms folder (see README.md), optional disks/drive8.d64, and optional disks/drive9.d64

The purpose of this is to ease development of new features, utilizing the feature rich Visual Studio IDE including debug support.

The benefits to other users include being able to test drive the project in an environment they already have - their existing Windows desktop or VM.   And if you love it and think you may enjoy a portable version, you can then invest your dollars into an LCD solution via various online retail websites.   There may even be a search engine out there to help you too.

Are you keeping up with Commodore?  Happy computing!  Spend that money wisely.

Thursday, May 9, 2024

Running SWEET16, Steve Wozniak's "The Dream Machine" from WozMon


The story goes that Steve Wozniak was running out of space in Apple Integer BASIC, and out of necessity, determination, and will power, developed SWEET16 to do 16-bit operations in a more compact fashion.  There is already a great article on SWEET16, the interpretive processing 16-bit supplement to 6502 machine language programs, over at 6502.org.  The article tells the history, instructs how to port, and provides a tutorial on how to use it.  (And see article on Wikipedia, and Steve Wozniak's 1977 article in Byte magazine).

My article will follow the steps to produce a binary to run on my minimal 6502 with MC6850 UART, and run through a few examples to use it together with the Apple-1 Hex Monitor, ported from listings included in the Apple-1 Operation Manual (1976).  The Hex Monitor (or WozMon as people generally refer to it) is the original 256-byte ROM included with the Apple-1 computer.  It only needed to include display memory, edit memory, and run from memory operations to initiate control of that computer.

This article and efforts are inspired by videos produced by Ben Eater and his 6502 breadboard computer.  I wanted to do something similar, and followed instructions he provided to do something similar with my 6502 emulator, but simpler.   

I already had a 6502 emulator.  One version is in C++, is very cross-platform (Windows, Linux, Mac, Arduino, STM32, etc.).  But I had focused on Commodore emulation to match the computers I grew up with learning to program.  While that is working well, it is using Commodore ROMs and some I/O emulation. 

Also inspirational are similar videos produced by Michael Cartwright for his Hopper development environment and 6502 breadboard and PCB computer, inspired by Ben Eater's 6502 breadboard computer.  Michael (sillycowvalley on github) uses the MC6850 UART instead of the MC6821 PIA used in Apple-1, or MOS6522 VIA or MOS6551 UART used by Ben Eater.

I surely didn't want to bit bang serial, and wanted it as simple as possible.  Reviewing resources on the web, including datasheets, it was apparent the MC6850 has an advantage of being rather minimalistic.  It has one data register (read/write), one control register (write), and one status register (read).  While originally intended for use with 6800 series microprocessors, it can be used with others.  Only caveat is that the status is not designed for the 6502 BIT instruction.  But the advantage is that it doesn't have a status bug like the 6551 which intended to replace it.

So, I sat down and added a minimal emulation profile to my emulator including configurable RAM/ROM, and I/O address for the MC6850.  My initial implementation supports polling but not interrupts, which is fine for our purposes today.  It does not include a parallel I/O chip, so no hooking up virtual LEDs.  Wait, what?  Oh yeah, we don't need those (yet?), we exclusively have a terminal console.   But that also means we don't have a way to load or save programs.

Also imagine 60K RAM and 4K ROM here (oops!)

I ported WozMon to the 6502/MC6850 minimum profile so it will serve as our launching off point, similar to how it was utilized on the Apple-1.  Porting required changing the assembler syntax to match my 6502 assembler of choice (ACME), especially note that all the hex values in the file should include # for immediate mode (if extracting from Usenet article instead of Byte article), DFB must stand for define byte, and you do need to include some save/restore register routines.

An advantage of having a minimal system unlike Commodore, is that the 32 consecutive zero-page bytes necessary for SWEET16 are guaranteed to be available because it is a minimal system, addresses are not used by IRQ routines, keyboard handlers, timers, KERNAL I/O, etc.

Steps

1. Clone (or download Zip of) the emulator c-simple-6502-cbm.  Note it is not necessary to gather the Commodore ROMs this time around, because we don't need them.

2. Compile using Visual Studio, or make/gcc (Makefile included), or similar.

3. Look for wozmon.bin in the roms/minimal folder (its ported source is in child src folder).

4. Launch the minimal profile

    c-simple-6502-cbm.exe 1 roms/minimal/wozmon.bin

Now WozMon should be running.  You can review the Apple-1 Operation Manual (1976) for more detailed instructions on how to use WozMon.  But if you're quick, you can follow along with the required inputs here.

5. Paste SWEET16 binary into WozMon.   See copyright at start of article, included here for educational purposes, trusting this is fair use and for your own personal use.  Not for commercial use.

# SWEET16 compiled for EE80 start address
EE70: 20 EA EE 68 85 1E 68 85
EE78: 1F 20 7F EE 4C 79 EE E6
EE80: 1E D0 02 E6 1F A9 EF 48
EE88: A0 00 B1 1E 29 0F 0A AA
EE90: 4A 51 1E F0 0B 86 1D 4A
EE98: 4A 4A A8 B9 C8 EE 48 60
EEA0: E6 1E D0 02 E6 1F BD CB
EEA8: EE 48 A5 1D 4A 60 68 68
EEB0: 20 F6 EE 6C 1E 00 B1 1E
EEB8: 95 01 88 B1 1E 95 00 98
EEC0: 38 65 1E 85 1E 90 02 E6
EEC8: 1F 60 00 F7 02 9B 0B 9C
EED0: 23 AD 14 B0 45 B7 4F BE
EED8: 2D C7 59 D0 83 DB 6C 03
EEE0: 31 E6 6E 91 1C E5 63 E5
EEE8: E5 E5 85 20 86 21 84 22
EEF0: 08 68 85 23 D8 60 A5 23
EEF8: 48 A5 20 A6 21 A4 22 28
EF00: 60 10 B3 B5 00 85 00 B5
EF08: 01 85 01 60 A5 00 95 00
EF10: A5 01 95 01 60 A5 00 81
EF18: 00 A0 00 84 1D F6 00 D0
EF20: 02 F6 01 60 A1 00 85 00
EF28: A0 00 84 01 F0 ED A0 00
EF30: F0 06 20 64 EF A1 00 A8
EF38: 20 64 EF A1 00 85 00 84
EF40: 01 A0 00 84 1D 60 20 24
EF48: EF A1 00 85 01 4C 1D EF
EF50: 20 15 EF A5 01 81 00 4C
EF58: 1D EF 20 64 EF A5 00 81
EF60: 00 4C 41 EF B5 00 D0 02
EF68: D6 01 D6 00 60 A0 00 38
EF70: A5 00 F5 00 99 00 00 A5
EF78: 01 F5 01 99 01 00 98 69
EF80: 00 85 1D 60 A5 00 75 00
EF88: 85 00 A5 01 75 01 A0 00
EF90: F0 E9 A5 1E 20 17 EF A5
EF98: 1F 20 17 EF 18 B0 0E B1
EFA0: 1E 10 01 88 65 1E 85 1E
EFA8: 98 65 1F 85 1F 60 B0 EC
EFB0: 60 0A AA B5 01 10 E8 60
EFB8: 0A AA B5 01 30 E1 60 0A
EFC0: AA B5 00 15 01 F0 D8 60
EFC8: 0A AA B5 00 15 01 D0 CF
EFD0: 60 0A AA B5 00 35 01 49
EFD8: FF F0 C4 60 0A AA B5 00
EFE0: 35 01 49 FF D0 B9 60 A2
EFE8: 18 20 64 EF A1 00 85 1F
EFF0: 20 64 EF A1 00 85 1E 60
EFF8: 4C AE EE 00 00 00 00 00

Note: SWEET16 entry point for this port is $EE70, and the operations are in a single page $EF01-$EFFA.   A save registers routine is at $EEEA and restore registers is at $EEF6.   Zero page usage is $00-$1F for the SWEET16 registers, and $20-$23 for saving 8-bit registers.

6. Let's try it out.  Start by pasting the following to enter a program at 

1000: 20 00 FE A9 2A 20 70 EE 
1008: 11 12 34 12 56 78 21 A2
1010: 33 00 8D F8 FF 00

Which is equivalent to

20 00 FE JSR $FE00
A9 2A    LDA #$2A
20 70 EE JSR $EE70
11 12 34 SET R1,$3412
12 56 78 SET R2,$7856
21       LD  R1 
A2       ADD R2
33       ST  R3
00       RTN
8D F8 FF STA $FFF8
00       BRK

JSR $EE70 switches to SWEET16 interpretation, and these are SWEET16 instructions through RTN, before being back in 6502.  The vectors are set such that a BRK will return to WozMon. ($FE00 is my specific UART initialization routine for MC6850, and storing a byte to $FFF8 will send it across the UART).

All this program does is set the R1 and R2 16-bit registers to constant values, the LD instruction loads the 16-bit accumulator from R1, then ADD R2 adds R2 to the accumulator, and the result is stored in R3 by the ST instruction.   RTN returns to normal 6502 operation.

7. To run the program, enter the following into WozMon:

1000R

8. Display the results by entering

0.1FR

From the last two steps the output should look something like the following (blank lines added for separation)

1000R

1000: 20*\


0.1F

0000: 68 AC 12 34 56 78 68 AC
0008: 00 00 00 00 00 00 00 00
0010: 00 00 00 00 00 00 00 00
0018: 00 00 00 00 00 06 12 10

And the accumulator (R0) at addresses 0 and 1 now has the value $AC68 which appears to be the sum of the other two 16-bit values, with a copy also stored at R3 (addresses 6/7).  The asterisk is printed to demonstrate registers being saved/restored and 6502 operation returning to normal.

That's just a quick example.   Hopefully you've got a little taste of WozMon and SWEET16. 

Example run of SWEET16

But that's not all!  

I made a Commodore port of WozMon, so why not also port SWEET16 to Commodore and run it there too?

# Commodore port of SWEET16
1540: 85 22 86 23 84 24 08 68
1548: 85 25 d8 60 a5 25 48 a5
1550: 22 a6 23 a4 24 28 60 00
1558: 00 00 00 00 00 00 00 00
1560: 00 00 00 00 00 00 00 00
1568: 00 00 00 00 00 00 00 00
1570: 00 00 00 00 00 00 00 00
1578: 00 00 00 00 00 00 00 00
1580: 20 40 15 68 85 7e 68 85
1588: 7f 20 8f 15 4c 89 15 e6
1590: 7e d0 02 e6 7f a9 16 48
1598: a0 00 b1 7e 29 0f 0a aa
15a0: 4a 51 7e f0 0b 86 7d 4a
15a8: 4a 4a a8 b9 d8 15 48 60
15b0: e6 7e d0 02 e6 7f bd db
15b8: 15 48 a5 7d 4a 60 68 68
15c0: 20 4c 15 6c 7e 00 b1 7e
15c8: 95 61 88 b1 7e 95 60 98
15d0: 38 65 7e 85 7e 90 02 e6
15d8: 7f 60 00 f7 02 9b 0b 9c
15e0: 23 ad 14 b0 45 b7 4f be
15e8: 2d c7 59 d0 83 db 6c 03
15f0: 31 e6 6e 91 1c e5 63 e5
15f8: e5 e5 00 00 00 00 00 00
1600: 00 10 c3 b5 60 85 60 b5
1608: 61 85 61 60 a5 60 95 60
1610: a5 61 95 61 60 a5 60 81
1618: 60 a0 00 84 7d f6 60 d0
1620: 02 f6 61 60 a1 60 85 60
1628: a0 00 84 61 f0 ed a0 00
1630: f0 06 20 64 16 a1 60 a8
1638: 20 64 16 a1 60 85 60 84
1640: 61 a0 00 84 7d 60 20 24
1648: 16 a1 60 85 61 4c 1d 16
1650: 20 15 16 a5 61 81 60 4c
1658: 1d 16 20 64 16 a5 60 81
1660: 60 4c 41 16 b5 60 d0 02
1668: d6 61 d6 60 60 a0 00 38
1670: a5 60 f5 60 99 60 00 a5
1678: 61 f5 61 99 61 00 98 69
1680: 00 85 7d 60 a5 60 75 60
1688: 85 60 a5 61 75 61 a0 00
1690: f0 e9 a5 7e 20 17 16 a5
1698: 7f 20 17 16 18 b0 0e b1
16a0: 7e 10 01 88 65 7e 85 7e
16a8: 98 65 7f 85 7f 60 b0 ec
16b0: 60 0a aa b5 61 10 e8 60
16b8: 0a aa b5 61 30 e1 60 0a
16c0: aa b5 60 15 61 f0 d8 60
16c8: 0a aa b5 60 15 61 d0 cf
16d0: 60 0a aa b5 60 35 61 49
16d8: ff f0 c4 60 0a aa b5 60
16e0: 35 61 49 ff d0 b9 60 a2
16e8: 18 20 64 16 a1 60 85 7f
16f0: 20 64 16 a1 60 85 7e 60
16f8: 4c be 15

This SWEET16 entry point for Commodore changed to $1580 so the sample program has to change to call this entry point instead, to call $FFD2 for screen output instead of using the UART, and jump to WozMon entry at end instead of BRK.   Note that this Commodore port puts the SWEET16 registers at $60 (instead of $00) in zero page.   The Commodore port was trivial, disassembly will show there's nothing secret going on, mostly moving around stuff in zero page, and moving the save/load registers code.

1000: A9 2A 20 80 15 11 12 34
1008: 12 56 78 21 A2 33 00 20
1010: D2 FF 4C 00 14
 
Vic-20 running WozMon and SWEET16

C64 running WozMon and SWEET16

It appears there's a bug restoring the registers.  That is not an asterisk!!!   But an underscore.   Exercise left for another day...   Update: I had replaced the call to UART_INIT from the other system with starting SWEET16 followed by 6502 code.  Bad, so bad (see screenshot for bad code).  Have since updated the sample program to be correct.   Disassembling here to double check.   The asterisk is now showing up fine!  Would have been doing some crazy stuff interpreting 6502 opcodes as SWEET16.

A9 2A    LDA #$2A
20 80 15 JSR $1580
11 12 34 SET R1,$3412
12 56 78 SET R2,$7856
21       LD  R1 
A2       ADD R2
33       ST  R3
00       RTN
20 D2 FF JSR $FFD2
4C 00 14 JMP $1400


Wednesday, May 1, 2024

C64 RAM locations for programmable characters

 


Taking the information from Jim Butterfield's interactive program we can determine a few optimal choices for configuring the location of video and character set memory.  They both need to be in the same 16K bank of the C64 memory, video memory needs to be accessible to the KERNAL, and some locations are off limits (offsets $1000-$1FFF within VIC-II 16K banks 0, 2) because the VIC-II only sees D000-DFFF ROM characters there.

Option 1: easiest, video $0400, chars $2000-$2FFF

Option 2: least BASIC free, video $8C00, chars $A000-$AFFF

Option 3: largest free, video $CC00, chars $F000-$FFFF


Option 4: single charset, video $C400, chars $C800-$CFFF


Thanks to Jim Butterfield's SCREENMAP 64 program, it prompts for you to choose between valid options, and then calculates the register and screen page values that you need to change(poke).  Shown above are details for the four options that seem best.  The first three allow for two full sets of characters.  The last one allows for a single character set, or one and a half character sets.

In addition to the steps shown, it may be necessary to install an NMI handler to keep the values set instead of reset to ROM defaults, and it will be necessary to load a font into the desired programable character set address range.

Options 3 and 4 are interesting because they both increase BASIC RAM by 1K more than normal by moving video screen memory elsewhere. Option 1 is the easiest to implement, so is perfect for getting started.


Notes:

1000-1FFF not available for VIC because maps to D000 ROM
5000-5FFF not available for VIC because maps to D000 ROM
9000-9FFF not available for VIC because maps to D000 ROM
D000-DFFF not available for VIC because maps to D000 ROM

C000-CFFF not recommended for prog. chars. because other RAM in that bank not usually available to KERNAL needed for video screen characters.   So if screen characters are there, only room for one set (2K) instead of two sets (4K)

Option 0 (Normal)
0400-07FF screen memory (1K) = 1024
0800-9FFF BASIC RAM (38K) 
C000-CFFF free (4K)
D000-DFFF character ROM banked under I/O

Option 1 (First 16K)
0400-07FF screen memory (1K) = 1024
0800-1FFF free (6K)
2000-2FFF prog. chars. (4K) = 8192
3000-9FFF BASIC RAM (28K)

4000-7FFF is smack dab in the middle of BASIC RAM, seems like a bad idea unless used with 6502 machine language or other assets around it, and not strictly BASIC.

Option 2 (Third 16K)
0400-8BFF BASIC RAM (34K)
8C00-8FFF screen memory (1K) = 35840
9000-9FFF free (4K)
A000-AFFF prog. chars in RAM bank under BASIC ROM = 40960

Option 3 (Fourth 16K)
0400-9FFF BASIC RAM (39K)
C000-CBFF free (3K)
CC00-CFFF screen memory (1K) = 52224
E000-EFFF = 57344 prog. chars in RAM bank under KERNAL ROM *or* F000-FFFF = 61440 *or* under CHAR ROM D000-DFFF = 53248

Option 4 (Fourth 16K)
0400-9FFF BASIC RAM (39K)
C000-C3FF free (1K) or half lowercase character set (no inverse characters)
C400-C7FF screen memory (1K) = 50176
C800-CFFF prog. chars (1 set, 2K only) = 51200


Tuesday, April 30, 2024

Raster Interrupts for C64

 


The VIC II chip (video IC) that gives the C64 a lot of its characters (pun intended), includes registers to set up interrupts at certain raster lines.  This allows for video tricks.  Above the background color is changed in the middle of the screen, and changed back when in the borders before drawing the screen again.


This code was leveraged from my character editor source for c64.  That project needed to display multiple different character sets (from ROM and RAM) on the screen simultaneously.   And that is described at the bottom of an earlier blog post.

My approach was to launch Vice x64sc (Commodore 64 emulator) and utilize its built in monitor (ALT-H) to craft prototype code.  The listings following are what I came up with.   Then I used the clipboard to move to a source editor, added labels, and further refined to change from background colors to font changes.

Written by Dave VW 2024-04-27

*** NOTE THIS IS THE ROUGH DRAFT
*** SOURCE CODE AT GITHUB IS MUCH CLEANER
*** ASSEMBLY SOURCE INSTEAD OF MONITOR LISTING

This part was created in the monitor...

>C:c000  2c 19 d0 10  44 ea ad 19  d0 29 01 f0  3b 2c 00 c1
>C:c010  30 16 10 60  ea a9 00 8d  12 d0 ad 11  d0 29 7f 8d
>C:c020  11 d0 0e 00  c1 4c 3b c0  ce 21 d0 a9  a4 8d 12 d0
>C:c030  ad 11 d0 29  7f 8d 11 d0  4e 00 c1 a9  01 8d 19 d0
>C:c040  ea 68 a8 68  aa 68 40 00  ea 4c 31 ea  a9 40 8d 00
>C:c050  c1 78 a9 80  8d 12 d0 ad  11 d0 29 7f  8d 11 d0 a9
>C:c060  00 8d 14 03  a9 c0 8d 15  03 ad 1a d0  09 01 8d 1a
>C:c070  d0 58 60 00  ad 12 d0 c9  c2 90 f9 a2  0a ca d0 fd
>C:c080  ee 21 d0 4c  15 c0                                

.C:c000  2C 19 D0    BIT $D019
.C:c003  10 44       BPL $C049
.C:c005  EA          NOP
.C:c006  AD 19 D0    LDA $D019
.C:c009  29 01       AND #$01
.C:c00b  F0 3B       BEQ $C048
.C:c00d  2C 00 C1    BIT $C100
.C:c010  30 16       BMI $C028
.C:c012  10 60       BPL $C074
.C:c014  EA          NOP
.C:c015  A9 00       LDA #$00
.C:c017  8D 12 D0    STA $D012
.C:c01a  AD 11 D0    LDA $D011
.C:c01d  29 7F       AND #$7F
.C:c01f  8D 11 D0    STA $D011
.C:c022  0E 00 C1    ASL $C100
.C:c025  4C 3B C0    JMP $C03B
.C:c028  CE 21 D0    DEC $D021
.C:c02b  A9 A4       LDA #$A4
.C:c02d  8D 12 D0    STA $D012
.C:c030  AD 11 D0    LDA $D011
.C:c033  29 7F       AND #$7F
.C:c035  8D 11 D0    STA $D011
.C:c038  4E 00 C1    LSR $C100
.C:c03b  A9 01       LDA #$01
.C:c03d  8D 19 D0    STA $D019
.C:c040  EA          NOP
.C:c041  68          PLA
.C:c042  A8          TAY
.C:c043  68          PLA
.C:c044  AA          TAX
.C:c045  68          PLA
.C:c046  40          RTI
.C:c047  00          BRK
.C:c048  EA          NOP
.C:c049  4C 31 EA    JMP $EA31
.C:c04c  A9 40       LDA #$40
.C:c04e  8D 00 C1    STA $C100
.C:c051  78          SEI
.C:c052  A9 80       LDA #$80
.C:c054  8D 12 D0    STA $D012
.C:c057  AD 11 D0    LDA $D011
.C:c05a  29 7F       AND #$7F
.C:c05c  8D 11 D0    STA $D011
.C:c05f  A9 00       LDA #$00
.C:c061  8D 14 03    STA $0314
.C:c064  A9 C0       LDA #$C0
.C:c066  8D 15 03    STA $0315
.C:c069  AD 1A D0    LDA $D01A
.C:c06c  09 01       ORA #$01
.C:c06e  8D 1A D0    STA $D01A
.C:c071  58          CLI
.C:c072  60          RTS
.C:c073  00          BRK
.C:c074  AD 12 D0    LDA $D012
.C:c077  C9 C2       CMP #$C2
.C:c079  90 F9       BCC $C074
.C:c07b  A2 0A       LDX #$0A
.C:c07d  CA          DEX
.C:c07e  D0 FD       BNE $C07D
.C:c080  EE 21 D0    INC $D021
.C:c083  4C 15 C0    JMP $C015

The initialization routine is at $c04c to install the new IRQ handler $c000.  The code jumps around a bit and has NOP (no instruction) as a by-product of patching the source in the monitor to get the desired functionality.   This is cleaned up a lot more in the sources to both repos.

Monday, April 29, 2024

MLX II Listing for C64 Character Sets Editor


Shown with 80s theme colors (key: 6)

Back in the day we would enter program listings from magazines.  That's how we got new utility and game software on a monthly basis.  It was a fun activity in front of my Commodore Vic-20 on Saturdays.

For nostalgia, and retro vibes, you can repeat the process to get this character editor program.   It's online elsewhere and pointed to in this blog, but if you have an air gapped C64, you can enter directly.

Note: Floppy drive 8 is required for loading/saving fonts and theme configuration.  This program does not support tape drives or alternate floppy drives.  So be prepared with a floppy drive 8 such as 1541, 1571, 1581.

Please enter the hex listing below using Compute's Gazette MLX II which includes a ninth checksum byte at the end of each line.  MLX will stop you from continuing if the checksum doesn't match it's internal algorithm.

e.g. I test entered using 64 MLX from Compute's Gazette disk from November 1993 

start:  0801
finish: 24b8

0801:0b 18 0a 00 9e 36 31 35 43
0809:37 00 00 00 00 00 00 00 b4

(gap of zeros or unused, use STOP+RESTORE if get stuck)

1800:00 0b 18 0a 00 9e 36 31 ae
1808:35 37 00 00 00 20 17 1f 6e
1810:18 66 a6 18 6e b1 24 a9 68
1818:00 85 22 a9 08 85 23 20 45
1820:a3 20 ad 18 d0 29 f0 8d fb
1828:b3 24 09 04 8d b4 24 20 44
1830:97 21 20 2b 20 a5 2c c9 e4
1838:18 f0 36 a9 01 a2 18 85 5a
1840:2b 86 2c a9 00 85 fb 85 5b
1848:fd a9 08 85 fc a2 d0 86 d5
1850:fe a9 10 85 ff a0 00 78 bf
1858:20 63 1f b1 fd 91 fb c8 67
1860:d0 f9 e6 fc e6 fe c6 ff e4
1868:d0 f1 20 5c 1f 58 20 7c 5e
1870:1f a9 93 20 d2 ff a9 13 0c
1878:20 d2 ff 2c b1 24 30 44 f2
1880:a9 a1 a2 22 20 8e 1d a9 83
1888:30 a2 23 85 b4 86 b5 20 81
1890:9f 1d 20 cc 1e a9 30 85 26
1898:fd a9 08 85 ff a9 be a2 52
18a0:23 20 8e 1d a5 fd 20 d2 46
18a8:ff a9 b3 a2 23 20 8e 1d b7
18b0:a9 20 20 d2 ff 20 9f 1d cb
18b8:e6 fd c6 ff d0 df 20 db d6
18c0:20 20 9f 1d 20 e1 1e a9 3d
18c8:00 85 27 a9 00 85 28 a9 e9
18d0:38 a2 04 85 29 86 2a a2 f8
18d8:d8 85 b2 86 b3 18 a5 a2 81
18e0:69 04 85 a3 20 b9 1d a0 74
18e8:00 b1 29 85 a7 ad 18 d0 f7
18f0:29 fe c9 10 d0 05 a9 12 af
18f8:8d 18 d0 20 8b 1e 20 e4 0c
1900:ff f0 ea 48 20 bb 1e 68 e4
1908:c9 4e d0 19 20 17 1f a5 9f
1910:22 69 07 85 22 90 c6 e6 ae
1918:23 a5 23 c9 10 90 be a9 30
1920:08 85 23 d0 b8 c9 2b d0 3d
1928:19 20 17 1f a5 22 69 7f cb
1930:85 22 90 a9 e6 23 a5 23 8c
1938:c9 10 90 a1 a9 08 85 23 1b
1940:d0 9b c9 42 d0 1a 20 17 65
1948:1f a5 22 e9 08 85 22 b0 a1
1950:8c c6 23 a5 23 c9 08 b0 3a
1958:84 a9 0f 85 23 4c dd 18 8f
1960:c9 2d d0 1a 20 17 1f a5 bf
1968:22 e9 80 85 22 b0 0c c6 41
1970:23 a5 23 c9 08 b0 04 a9 53
1978:0f 85 23 4c dd 18 c9 11 b0
1980:d0 31 a5 29 69 27 85 29 ca
1988:85 b2 90 05 e6 2a e6 b3 ed
1990:18 a5 28 69 01 29 07 85 14
1998:28 d0 15 38 a5 29 e9 40 1f
19a0:85 29 85 b2 a5 2a e9 01 66
19a8:85 2a a5 b3 e9 01 85 b3 2a
19b0:4c e7 18 c9 91 d0 33 a5 7e
19b8:29 e9 28 85 29 85 b2 b0 cc
19c0:05 c6 2a c6 b3 38 a5 28 ca
19c8:e9 01 29 07 85 28 c9 07 2d
19d0:d0 15 18 a5 29 69 40 85 03
19d8:29 85 b2 a5 2a 69 01 85 30
19e0:2a a5 b3 69 01 85 b3 4c 70
19e8:e7 18 c9 1d d0 1e e6 29 16
19f0:e6 b2 a5 27 69 00 85 27 e7
19f8:29 07 d0 0d 38 a5 29 e9 01
1a00:08 85 29 85 b2 a9 00 85 d8
1a08:27 4c e7 18 c9 9d d0 18 df
1a10:c6 29 c6 b2 c6 27 10 0d f5
1a18:18 a5 29 69 08 85 29 85 ab
1a20:b2 a9 07 85 27 4c e7 18 a3
1a28:c9 13 d0 17 a9 00 85 27 11
1a30:85 28 a9 38 85 29 85 b2 78
1a38:a9 04 85 2a a9 d8 85 b3 05
1a40:4c e7 18 c9 20 d0 11 20 ba
1a48:1e 1f a6 27 a4 28 b1 22 e5
1a50:5d 91 22 91 22 4c dd 18 0b
1a58:c9 03 d0 1b 20 f1 21 ad b6
1a60:b5 24 8d 18 d0 18 4e b1 e0
1a68:24 a9 d4 a2 23 20 8e 1d b1
1a70:20 cc 1e 20 e1 1e 60 c9 bf
1a78:53 d0 49 20 80 20 a9 93 21
1a80:20 d2 ff a9 0a 85 39 a9 96
1a88:00 85 3a a9 c0 85 9d a9 01
1a90:01 a2 08 a0 0f 20 ba ff 67
1a98:a9 0b a2 d6 a0 23 20 bd b5
1aa0:ff a9 00 85 fb a9 08 85 b3
1aa8:fc a9 fb a2 00 a0 18 20 42
1ab0:d8 ff a9 ec a2 23 20 8e c5
1ab8:1d 20 e4 ff f0 fb 20 96 6e
1ac0:20 4c 71 18 c9 93 d0 0f 15
1ac8:20 1e 1f a9 00 a0 07 91 35
1ad0:22 88 10 fb 4c dd 18 c9 cd
1ad8:12 d0 11 20 1e 1f a0 07 24
1ae0:b1 22 49 ff 91 22 88 10 d5
1ae8:f7 4c dd 18 c9 3c d0 10 5a
1af0:20 1e 1f a0 07 b1 22 0a f7
1af8:91 22 88 10 f8 4c dd 18 5d
1b00:c9 3e d0 10 20 1e 1f a0 1e
1b08:07 b1 22 4a 91 22 88 10 4d
1b10:f8 4c dd 18 c9 d6 d0 16 74
1b18:20 1e 1f a0 07 88 b1 22 b3
1b20:c8 91 22 88 10 f7 c8 a9 87
1b28:00 91 22 4c dd 18 c9 5e 0d
1b30:d0 18 20 1e 1f a2 07 a0 ec
1b38:00 c8 b1 22 88 91 22 c8 90
1b40:ca d0 f6 a9 00 91 22 4c 60
1b48:dd 18 c9 46 d0 25 20 1e 8a
1b50:1f a0 03 84 ff c8 84 fe 12
1b58:a4 ff b1 22 48 a4 fe b1 bd
1b60:22 aa 68 91 22 a4 ff 8a a6
1b68:91 22 e6 fe c6 ff 10 e8 fb
1b70:4c dd 18 c9 52 d0 25 20 24
1b78:1e 1f a0 00 a2 00 b1 22 34
1b80:0a 91 22 76 a8 e8 e0 08 7e
1b88:d0 f4 c8 c0 08 d0 ed a0 89
1b90:07 b9 a8 00 91 22 88 10 04
1b98:f8 4c dd 18 c9 4d d0 26 e6
1ba0:20 1e 1f a0 07 a2 07 b1 de
1ba8:22 4a 91 22 b9 a8 00 2a 71
1bb0:99 a8 00 ca 10 f1 88 10 f3
1bb8:ec a0 07 b9 a8 00 91 22 94
1bc0:88 10 f8 4c dd 18 c9 40 46
1bc8:d0 14 ad b5 24 cd b4 24 63
1bd0:f0 06 20 74 20 4c ed 18 72
1bd8:20 62 20 4c ed 18 c9 2a 0e
1be0:d0 2d ad aa 24 ae ad 24 86
1be8:ac af 24 8e aa 24 8c ad 7b
1bf0:24 8d af 24 ad a9 24 ae df
1bf8:ac 24 ac ae 24 8e a9 24 e1
1c00:8c ac 24 8d ae 24 20 a3 f0
1c08:20 20 cc 20 4c dd 18 c9 c7
1c10:5a d0 24 a6 a4 f0 1d a5 61
1c18:a5 d0 07 20 1e 1f c6 a4 d9
1c20:a6 a4 e6 a5 ca 86 a4 8a 50
1c28:20 4c 1f a0 07 b1 fb 91 f9
1c30:22 88 10 f9 4c dd 18 c9 11
1c38:43 d0 0f a0 07 b1 22 99 0f
1c40:51 02 88 10 f8 84 a6 4c 27
1c48:ed 18 c9 56 d0 14 24 a6 e1
1c50:10 0d 20 1e 1f a0 07 b9 fc
1c58:51 02 91 22 88 10 f8 4c d0
1c60:dd 18 c9 58 d0 16 20 1e 89
1c68:1f a0 07 b1 22 99 51 02 70
1c70:a9 00 91 22 88 10 f4 84 c4
1c78:a6 4c dd 18 c9 59 d0 0d b6
1c80:a5 a5 f0 09 c6 a5 e6 a4 e2
1c88:a6 a4 4c 27 1c c9 2f d0 70
1c90:32 20 17 1f a9 00 a2 08 59
1c98:85 fb 86 fc a2 10 85 fd 91
1ca0:86 fe a2 08 86 ff a0 00 26
1ca8:b1 fb aa b1 fd 91 fb 8a e1
1cb0:91 fd c8 d0 f3 e6 fc e6 73
1cb8:fe c6 ff d0 eb 20 7c 1f 27
1cc0:4c dd 18 c9 85 d0 16 ee c0
1cc8:86 02 ad 86 02 4d 21 d0 3b
1cd0:29 0f f0 f3 20 cc 1e 20 4f
1cd8:b9 1d 4c ed 18 c9 89 d0 69
1ce0:1b 18 ad a8 24 69 01 29 de
1ce8:0f 8d a8 24 ad 21 d0 4d 44
1cf0:a8 24 29 0f f0 eb 20 b9 cd
1cf8:1d 4c ed 18 c9 86 d0 10 2c
1d00:ee 21 d0 ad 21 d0 4d 86 5c
1d08:02 29 0f f0 f3 4c ed 18 43
1d10:c9 8a d0 10 ce 21 d0 ad 37
1d18:21 d0 4d 86 02 29 0f f0 ec
1d20:f3 4c ed 18 c9 87 d0 06 ba
1d28:ee 20 d0 4c ed 18 c9 8b af
1d30:d0 06 ce 20 d0 4c 38 1d 75
1d38:c9 88 d0 1b 18 ad a7 24 30
1d40:69 01 29 0f 8d a7 24 ad 86
1d48:21 d0 4d a7 24 29 0f f0 40
1d50:eb 20 b9 1d 4c ed 18 c9 a5
1d58:8c d0 11 18 ad a6 24 69 6a
1d60:01 29 0f 8d a6 24 20 b9 df
1d68:1d 4c ed 18 c9 48 d0 0b 9f
1d70:ad b1 24 49 80 8d b1 24 c8
1d78:4c 71 18 c9 30 90 0c c9 7a
1d80:3a b0 08 29 0f 20 eb 20 88
1d88:4c 76 18 4c ed 18 85 fb 25
1d90:86 fc a0 00 b1 fb f0 06 c6
1d98:20 d2 ff c8 d0 f6 60 a9 f0
1da0:cf a2 23 20 8e 1d a5 b4 ba
1da8:a6 b5 20 8e 1d c8 98 18 e5
1db0:65 b4 85 b4 90 02 e6 b5 d6
1db8:60 a9 38 a2 04 85 24 86 c3
1dc0:25 a2 d8 85 b0 86 b1 a9 56
1dc8:08 85 ff a0 00 a2 08 b1 be
1dd0:22 85 26 ad a6 24 91 b0 b6
1dd8:ad a9 24 06 26 90 08 ad 6a
1de0:a7 24 91 b0 ad aa 24 91 27
1de8:24 e6 24 e6 b0 d0 04 e6 99
1df0:25 e6 b1 ca d0 dd 18 a5 2e
1df8:24 69 1f 85 24 85 b0 90 05
1e00:04 e6 25 e6 b1 c8 c6 ff 49
1e08:d0 c3 2c b1 24 10 03 4c f1
1e10:e1 1e 20 6c 1f a2 19 86 cb
1e18:24 86 b0 a2 04 86 25 a2 6f
1e20:d8 86 b1 38 66 ff a0 00 98
1e28:20 65 1e e6 24 e6 b0 d0 ee
1e30:04 e6 25 e6 b1 18 66 ff f5
1e38:a2 08 18 a5 24 69 25 85 bb
1e40:24 85 b0 90 04 e6 25 e6 fb
1e48:b1 ad ab 24 2c b0 24 30 1d
1e50:02 a9 e5 91 24 e6 24 d0 a3
1e58:02 e6 25 b1 22 20 65 1e 89
1e60:c8 ca d0 d6 60 48 4a 4a 3e
1e68:4a 4a 20 7a 1e e6 24 e6 c3
1e70:b0 d0 04 e6 25 e6 b1 68 b8
1e78:29 0f 09 30 c9 3a 90 02 8b
1e80:e9 39 24 ff 10 02 09 80 9f
1e88:91 24 60 38 a5 a3 c5 a2 10
1e90:d0 28 a5 a2 69 1d 85 a3 8c
1e98:a0 00 ad a7 24 2c b0 24 ac
1ea0:10 0c b1 29 49 80 91 29 49
1ea8:ad a8 24 91 b2 60 b1 b2 b0
1eb0:29 0f cd a8 24 d0 f1 20 f1
1eb8:b4 20 60 a0 00 a5 a7 91 e4
1ec0:29 20 b4 20 18 a5 a2 69 38
1ec8:02 85 a3 60 a0 00 ad 86 c8
1ed0:02 99 00 d8 99 00 d9 99 1c
1ed8:00 da 99 00 db c8 d0 f1 94
1ee0:60 a9 b8 a2 05 85 fb 86 b5
1ee8:fc 2c b1 24 10 10 a0 00 29
1ef0:a9 20 91 fb c8 d0 fb 20 9d
1ef8:6c 1f a8 91 fb 60 20 0e 11
1f00:1f 2c b1 24 30 10 a9 d0 37
1f08:a2 06 85 fb 86 fc a0 00 f2
1f10:98 91 fb c8 d0 fa 60 a9 e7
1f18:00 85 a4 85 a5 60 a5 a4 43
1f20:c9 18 90 15 a2 00 a0 08 0b
1f28:b9 3c 03 9d 3c 03 e8 c8 15
1f30:c0 c4 d0 f4 a2 17 86 a4 8c
1f38:8a 20 4c 1f a0 07 b1 22 e5
1f40:91 fb 88 10 f9 e6 a4 c8 d5
1f48:84 a5 18 60 0a 0a 0a 18 df
1f50:69 3c 85 fb a2 03 90 01 06
1f58:e8 86 fc 60 a5 01 09 07 9c
1f60:85 01 60 a5 01 29 f8 09 af
1f68:03 85 01 60 a5 23 85 ff 74
1f70:a5 22 46 ff 6a 46 ff 6a a9
1f78:46 ff 6a 60 a9 00 a2 10 cf
1f80:85 fb 86 fc a2 38 85 fd 20
1f88:86 fe a2 08 86 ff a0 00 14
1f90:b1 fb 91 fd c8 d0 f9 e6 1d
1f98:fc e6 fe c6 ff d0 f1 60 e2
1fa0:2c 19 d0 30 03 4c 31 ea ee
1fa8:ad 19 d0 29 01 f0 f6 ad 18
1fb0:b2 24 10 2a ad 12 d0 c9 17
1fb8:c2 90 f9 a2 0a ca d0 fd 01
1fc0:ad b6 24 8d 18 d0 a9 00 38
1fc8:8d 12 d0 8d b2 24 ad 11 d7
1fd0:d0 29 7f 8d 11 d0 a9 01 aa
1fd8:8d 19 d0 4c 25 20 f0 2a b8
1fe0:ad 12 d0 c9 8a 90 f9 a2 5e
1fe8:0a ca d0 fd ad b5 24 8d f2
1ff0:18 d0 a9 a4 8d 12 d0 8d d2
1ff8:b2 24 ad 11 d0 29 7f 8d 18
2000:11 d0 a9 01 8d 19 d0 4c 01
2008:25 20 ad b4 24 8d 18 d0 3c
2010:a9 68 8d 12 d0 8d b2 24 58
2018:ad 11 d0 29 7f 8d 11 d0 45
2020:a9 01 8d 19 d0 68 a8 68 9a
2028:aa 68 40 78 a9 00 8d b2 82
2030:24 a9 00 8d 12 d0 ad 11 06
2038:d0 29 7f 8d 11 d0 ad 14 2f
2040:03 ae 15 03 e0 1f f0 10 f5
2048:8d a6 1f 8e a7 1f a9 a0 73
2050:a2 1f 8d 14 03 8e 15 03 1c
2058:ad 1a d0 09 01 8d 1a d0 e3
2060:58 60 ad b4 24 29 f0 09 96
2068:02 8d b5 24 29 f0 09 0e 33
2070:8d b6 24 60 ad b4 24 8d c5
2078:b5 24 09 02 8d b6 24 60 cd
2080:ad b5 24 8d b7 24 ad b6 c2
2088:24 8d b8 24 ad b4 24 8d ad
2090:b5 24 8d b6 24 60 ad b7 87
2098:24 8d b5 24 ad b8 24 8d 6d
20a0:b6 24 60 a9 80 8d b0 24 ab
20a8:ad aa 24 cd a9 24 d0 03 4e
20b0:4e b0 24 60 a4 28 b1 22 1a
20b8:a6 27 3d 91 22 c9 01 ad be
20c0:a6 24 90 03 ad a7 24 a0 94
20c8:00 91 b2 60 a9 24 a2 23 10
20d0:20 8e 1d 20 db 20 a9 92 af
20d8:4c d2 ff a9 ee a2 22 2c 01
20e0:b0 24 30 04 a9 09 a2 23 a2
20e8:4c 8e 1d c9 00 d0 02 a9 24
20f0:0a c9 0b 90 01 60 a8 a9 97
20f8:49 a2 24 85 fb 86 fc 88 df
2100:f0 0f 18 a5 fb 69 09 85 f8
2108:fb a5 fc 69 00 85 fc d0 c8
2110:ee a0 00 b1 fb 8d 86 02 32
2118:c8 b1 fb 8d 21 d0 c8 b1 13
2120:fb 8d 20 d0 c8 b1 fb 8d 67
2128:a6 24 c8 b1 fb 8d a7 24 84
2130:c8 b1 fb 8d a8 24 c8 b1 b4
2138:fb 8d a9 24 c8 b1 fb 8d e5
2140:aa 24 c8 b1 fb 8d ab 24 a6
2148:20 a3 20 20 cc 1e 4c 51 52
2150:21 ad aa 24 c9 a0 d0 13 ab
2158:a9 20 8d ac 24 a9 2a 8d 9d
2160:ad 24 a9 cf 8d ae 24 8d b1
2168:af 24 60 c9 2a d0 13 a9 98
2170:cf 8d ac 24 8d ad 24 a9 ea
2178:20 8d ae 24 a9 a0 8d af e0
2180:24 60 a9 20 8d ac 24 a9 35
2188:a0 8d ad 24 a9 20 8d ae 0e
2190:24 a9 2a 8d af 24 60 a9 e5
2198:fe a2 23 20 8e 1d 20 6d ff
21a0:22 d0 4d a9 0a 85 39 a9 ee
21a8:00 85 3a a9 c0 85 9d a9 2f
21b0:01 a2 08 a0 00 20 ba ff 1d
21b8:a9 08 a2 e4 a0 23 20 bd 04
21c0:ff a9 00 a2 b9 a0 24 20 50
21c8:d5 ff a2 09 a0 00 b9 b9 0d
21d0:24 99 a3 24 c8 ca d0 f6 4c
21d8:ad a3 24 ae a4 24 ac a5 fe
21e0:24 8d 86 02 8e 21 d0 8c b0
21e8:20 d0 20 a3 20 20 51 21 f2
21f0:60 ad 86 02 29 0f 8d a3 04
21f8:24 ad 21 d0 29 0f 8d a4 2f
2200:24 ad 20 d0 29 0f 8d a5 19
2208:24 20 5c 22 f0 4d 20 80 91
2210:20 a9 1f a2 24 20 8e 1d b8
2218:20 6d 22 d0 3e a9 0a 85 4b
2220:39 a9 00 85 3a a9 c0 85 43
2228:9d a9 01 a2 08 a0 0f 20 f0
2230:ba ff a9 0b a2 e1 a0 23 b8
2238:20 bd ff a9 a3 85 fb a9 6b
2240:24 85 fc a9 fb a2 ac a0 96
2248:24 20 d8 ff a9 ec a2 23 2b
2250:20 8e 1d 20 e4 ff f0 fb f2
2258:20 96 20 60 a2 09 a0 00 d6
2260:b9 b9 24 d9 a3 24 d0 04 65
2268:c8 ca d0 f4 60 20 e4 ff 7a
2270:f0 fb c9 4e d0 0b a9 45 95
2278:a2 24 20 8e 1d a9 01 d0 66
2280:0f c9 59 f0 04 c9 0d d0 2b
2288:e4 a9 40 a2 24 20 8e 1d b7
2290:60 80 40 20 10 08 04 02 d9
2298:01 7f cf df ef f7 fc fd 8c
22a0:fe 0d 20 12 20 20 43 48 1d
22a8:36 34 45 44 49 54 20 20 fd
22b0:0d 20 12 20 20 28 43 29 19
22b8:20 32 30 32 34 20 20 0d 32
22c0:20 12 20 20 44 41 56 49 bc
22c8:44 20 52 2e 20 20 0d 20 20
22d0:12 20 56 41 4e 20 57 41 e7
22d8:47 4e 45 52 20 0d 20 12 a9
22e0:20 44 41 56 45 56 57 2e 34
22e8:43 4f 4d 20 0d 13 20 20 63
22f0:20 20 20 20 20 20 20 20 35
22f8:20 20 20 20 20 12 20 37 1c
2300:36 35 34 33 32 31 30 20 3f
2308:00 20 20 20 20 20 20 20 3e
2310:20 20 20 20 20 20 20 20 56
2318:12 20 a3 a3 a3 a3 a3 a3 b4
2320:a3 a3 20 00 13 92 11 11 3b
2328:11 11 11 11 11 11 11 00 5d
2330:0d 00 12 40 2d 2b 2a 2f dc
2338:59 5a 58 43 56 0d 00 12 f9
2340:42 92 41 43 4b 20 12 52 f9
2348:92 4f 54 41 54 45 0d 00 1c
2350:12 4e 92 45 58 54 20 12 40
2358:4d 92 49 52 52 4f 52 0d b9
2360:00 12 3c 3e 5e 56 92 20 28
2368:12 46 92 4c 49 50 0d 00 06
2370:12 46 31 92 2d 12 46 38 17
2378:92 20 12 30 2d 39 0d 00 bd
2380:12 48 4f 4d 45 92 20 12 67
2388:43 4c 52 0d 00 12 52 56 e1
2390:53 92 20 20 12 53 50 41 ea
2398:43 45 0d 00 12 53 54 4f 49
23a0:50 92 20 12 53 92 41 56 96
23a8:45 0d 00 12 48 92 49 44 59
23b0:45 0d 00 92 20 20 20 20 e7
23b8:20 20 20 20 12 00 1d 1d 05
23c0:1d 1d 1d 1d 1d 1d 1d 1d 07
23c8:1d 1d 1d 1d 1d 12 00 92 1e
23d0:20 20 20 00 93 00 40 30 80
23d8:3a 46 4f 4e 54 2e 42 49 c5
23e0:4e 40 30 3a 46 4f 4e 54 68
23e8:2e 43 46 47 0d 0d 12 50 65
23f0:52 45 53 53 20 41 4e 59 4d
23f8:20 4b 45 59 0d 00 93 0d fc
2400:4c 4f 41 44 20 43 4f 4e a9
2408:46 49 47 55 52 41 54 49 8d
2410:4f 4e 20 28 59 2f 4e 29 67
2418:3f 20 12 59 92 9d 00 93 7e
2420:0d 53 41 56 45 20 43 4f d1
2428:4e 46 49 47 55 52 41 54 91
2430:49 4f 4e 20 28 59 2f 4e 10
2438:29 3f 20 12 59 92 9d 00 5a
2440:59 45 53 0d 00 4e 4f 0d a6
2448:00 0e 06 0e 0e 00 01 20 48
2450:a0 a0 01 00 0f 00 01 0b b6
2458:cf cf a0 05 00 00 00 05 e5
2460:05 20 2a a0 06 01 03 0f cb
2468:00 03 cf cf a0 00 0b 0c 8f
2470:0f 00 0e cf cf a0 0d 06 20
2478:08 07 02 04 cf cf a0 0b 11
2480:00 08 0f 08 09 20 a0 a0 d7
2488:0d 0b 0d 0c 00 04 20 a0 6d
2490:a0 00 01 0e 0f 0e 05 cf b4
2498:cf a0 0e 00 00 00 0b 06 ce
24a0:20 a0 a0 00 00 00 0e 00 51
24a8:01 20 a0 a0 20 2a cf cf b0
24b0:80 00 00 10 14 12 1e 00 5f
24b8:00 00 00 00 00 00 00 00 01