Page 1 of 1

Dragon character map...

Posted: Mon Oct 14, 2013 2:28 pm
by jedie
jedie wrote:The area $0400-05ff (Default Text screen) doesn't use ASCII. Where can i find a "translation" table for it?
In http://archive.worldofdragon.org/archiv ... mputer.pdf is a table with CHR$ <-> POKE code.

I used this information and a small BASIC program:

Code: Select all

10 CLS
20 FOR I = 0 TO 255:
30 POKE 1024+(I*2),I
40 NEXT I
50 I$ = INKEY$:IF I$="" THEN 50
to create this:
Image


Then i collected all information into one Python script: https://gist.github.com/jedie/6975555


Then i implement a function to create a Wiki-Table with the information and so i created the Wiki page http://archive.worldofdragon.org/index. ... le=CharMap