c64 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673
  1. #------------------------------------------------------------------------------
  2. # $File: c64,v 1.16 2024/03/07 22:30:21 christos Exp $
  3. # c64: file(1) magic for various commodore 64 related files
  4. #
  5. # From: Dirk Jagdmann <doj@cubic.org>
  6. 0x16500 belong 0x12014100 D64 Image
  7. 0x16500 belong 0x12014180 D71 Image
  8. 0x61800 belong 0x28034400 D81 Image
  9. 0 belong 0x43154164 X64 Image
  10. # C64 (and other CBM) cartridges
  11. # Extended by David Korth <gerbilsoft@gerbilsoft.com>
  12. # Update: Joerg Jenderek
  13. # Reference: https://vice-emu.sourceforge.io/vice_17.html#SEC391
  14. # http://ist.uwaterloo.ca/~schepers/formats/CRT.TTX
  15. # http://mark0.net/download/triddefs_xml.7z/defs/c/crt-c64.trid.xml
  16. # Note: called "C64 Cartridge image" by TrID and
  17. # "CRT C64 Cartridge Image Format" by DROID via PUID fmt/822
  18. 0 string C64\40CARTRIDGE
  19. # skip DROID fmt-822-signature-id-1179.crt with missing packet length
  20. >0x44 ubelong >0x10
  21. >>0 use c64-crt
  22. # display Commodore 64 cartridge information
  23. 0 name c64-crt
  24. >0 string x Commodore 64 cartridge
  25. #!:mime application/octet-stream
  26. !:mime application/x-commodore-crt
  27. !:ext crt
  28. # http://mark0.net/download/triddefs_xml.7z/defs/c/car-ccs64.trid.xml
  29. #!:ext crt/car
  30. >0x20 ubyte 0 \b,
  31. >0x20 ubyte !0
  32. # 32-byte null padded cartridge name like: "BUGS BUNNY" "CART64" "EasyFlash" "FINAL CARTRIDGE" "Magic Desk" "VICE CART"
  33. >>0x20 string/T x \b: "%.32s",
  34. # cartridge hardware type
  35. >0x16 beshort 0
  36. # cartridge port EXROM line status
  37. >>0x18 beshort 0x0000 16 KB game
  38. >>0x18 beshort 0x0001 8 KB game
  39. >>0x18 beshort 0x0100 UltiMax mode
  40. >>0x18 beshort 0x0101 RAM/disabled
  41. >0x16 beshort 1 Action Replay
  42. >0x16 beshort 2 KCS Power Cartridge
  43. >0x16 beshort 3 Final Cartridge III
  44. >0x16 beshort 4 Simons' BASIC
  45. >0x16 beshort 5 Ocean type 1
  46. >0x16 beshort 6 Expert Cartridge
  47. >0x16 beshort 7 Fun Play, Power Play
  48. >0x16 beshort 8 Super Games
  49. >0x16 beshort 9 Atomic Power
  50. >0x16 beshort 10 Epyx Fastload
  51. >0x16 beshort 11 Westermann Learning
  52. >0x16 beshort 12 Rex Utility
  53. >0x16 beshort 13 Final Cartridge I
  54. >0x16 beshort 14 Magic Formel
  55. >0x16 beshort 15 C64 Game System, System 3
  56. >0x16 beshort 16 Warp Speed
  57. >0x16 beshort 17 Dinamic
  58. >0x16 beshort 18 Zaxxon / Super Zaxxon (Sega)
  59. >0x16 beshort 19 Magic Desk, Domark, HES Australia
  60. >0x16 beshort 20 Super Snapshot V5
  61. >0x16 beshort 21 Comal-80
  62. >0x16 beshort 22 Structured BASIC
  63. >0x16 beshort 23 Ross
  64. >0x16 beshort 24 Dela EP64
  65. >0x16 beshort 25 Dela EP7x8
  66. >0x16 beshort 26 Dela EP256
  67. >0x16 beshort 27 Rex EP256
  68. >0x16 beshort 28 Mikro Assembler
  69. >0x16 beshort 29 Final Cartridge Plus
  70. >0x16 beshort 30 Action Replay 4
  71. >0x16 beshort 31 Stardos
  72. >0x16 beshort 32 EasyFlash
  73. >0x16 beshort 33 EasyFlash Xbank
  74. >0x16 beshort 34 Capture
  75. >0x16 beshort 35 Action Replay 3
  76. >0x16 beshort 36
  77. # cartridge Hardware Revision/Subtype (usually 0) (added in v1.01)
  78. >>0x1A ubyte 1 Nordic Replay
  79. >>0x1A ubyte !1 Retro Replay
  80. >0x16 beshort 37 MMC64
  81. >0x16 beshort 38 MMC Replay
  82. >0x16 beshort 39 IDE64
  83. >0x16 beshort 40 Super Snapshot V4
  84. >0x16 beshort 41 IEEE-488
  85. >0x16 beshort 42 Game Killer
  86. >0x16 beshort 43 Prophet64
  87. >0x16 beshort 44 EXOS
  88. >0x16 beshort 45 Freeze Frame
  89. >0x16 beshort 46 Freeze Machine
  90. >0x16 beshort 47 Snapshot64
  91. >0x16 beshort 48 Super Explode V5.0
  92. >0x16 beshort 49 Magic Voice
  93. >0x16 beshort 50 Action Replay 2
  94. >0x16 beshort 51 MACH 5
  95. >0x16 beshort 52 Diashow-Maker
  96. >0x16 beshort 53 Pagefox
  97. >0x16 beshort 54 Kingsoft
  98. >0x16 beshort 55 Silverrock 128K Cartridge
  99. >0x16 beshort 56 Formel 64
  100. >0x16 beshort 57
  101. >>0x1A ubyte 1 Hucky
  102. >>0x1A ubyte !1 RGCD
  103. >0x16 beshort 58 RR-Net MK3
  104. >0x16 beshort 59 EasyCalc
  105. >0x16 beshort 60 GMod2
  106. >0x16 beshort 61 MAX Basic
  107. >0x16 beshort 62 GMod3
  108. >0x16 beshort 63 ZIPP-CODE 48
  109. >0x16 beshort 64 Blackbox V8
  110. >0x16 beshort 65 Blackbox V3
  111. >0x16 beshort 66 Blackbox V4
  112. >0x16 beshort 67 REX RAM-Floppy
  113. >0x16 beshort 68 BIS-Plus
  114. >0x16 beshort 69 SD-BOX
  115. >0x16 beshort 70 MultiMAX
  116. >0x16 beshort 71 Blackbox V9
  117. >0x16 beshort 72 Lt. Kernal Host Adaptor
  118. >0x16 beshort 73 RAMLink
  119. >0x16 beshort 74 H.E.R.O.
  120. >0x16 beshort 75 IEEE Flash! 64
  121. >0x16 beshort 76 Turtle Graphics II
  122. >0x16 beshort 77 Freeze Frame MK2
  123. >0x16 beshort 78 Partner 64
  124. # cartridge hardware type: (0-78)
  125. >0x16 ubeshort >78 unknown type %#x
  126. # Cartridge Hardware Revision/Subtype (usually 0 added in v1.01)
  127. >>0x1A ubyte >0 revision %#x
  128. # padded with 3 space characters for CRT but for CCS64 Cartridge (*.CAR) maybe different according to TrID
  129. >14 ubeshort !0x2020 \b, at 14 %#x
  130. # file header length like: 20h (reported wrong) 40h (default and minimum)
  131. >0x10 ubelong !0x40 \b, header length %#x
  132. # cartridge version like: 1.0 1.1 (adds CRT sub type/hardware revision) 2.0 (introduces VIC20, PLUS4, C128, CBM2)
  133. >0x14 ubeshort !0x0100
  134. >>0x14 ubyte x \b, version %u
  135. >>0x15 ubyte x \b.%u
  136. # cartridge content start with ROM signature which must be CHIP
  137. >0x40 ubelong !0x43484950 \b, invalid ROM signature
  138. >>0x40 string x "%0.4s"
  139. # total packet length (length of ROM image size and header combined) like: 2010h 4010h
  140. >0x44 ubelong x \b, packet length %#x
  141. 0 string C128\40CARTRIDGE Commodore 128 cartridge
  142. >0x20 ubyte 0 \b,
  143. >0x20 ubyte !0
  144. >>0x20 string/T x \b: "%.32s",
  145. >0x16 beshort 0 generic cartridge
  146. >0x16 beshort 1 Warpspeed128
  147. >>0x1A ubyte 1 \b, REU support
  148. >>0x1A ubyte 2 \b, REU support, with I/O and ROM banking
  149. 0 string CBM2\40CARTRIDGE Commodore CBM-II cartridge
  150. >0x20 ubyte !0
  151. >>0x20 string/T x \b: "%.32s"
  152. 0 string VIC20\40CARTRIDGE Commodore VIC-20 cartridge
  153. >0x20 ubyte 0 \b,
  154. >0x20 ubyte !0
  155. >>0x20 string/T x \b: "%.32s",
  156. >0x16 beshort 0 generic cartridge
  157. >0x16 beshort 1 Mega-Cart
  158. >0x16 beshort 2 Behr Bonz
  159. >0x16 beshort 3 Vic Flash Plugin
  160. >0x16 beshort 4 UltiMem
  161. >0x16 beshort 5 Final Expansion
  162. 0 string PLUS4\40CARTRIDGE Commodore 16/Plus4 cartridge
  163. >0x20 ubyte !0
  164. >>0x20 string/T x \b: "%.32s"
  165. # DreamLoad archives see:
  166. # https://www.lemon64.com/forum/viewtopic.php?t=37415\
  167. # &sid=494dc2ca91289e05dadf80a7f8a968fe (at the bottom).
  168. # https://www.c64-wiki.com/wiki/DreamLoad.
  169. # Example HVSC Commodore 64 music collection:
  170. # https://kohina.duckdns.org/HVSC/C64Music/10_Years_HVSC.dfi
  171. 0 byte 0
  172. >1 string DREAMLOAD\40FILE\40ARCHIVE
  173. >>0x17 byte 0 DFI Image
  174. >>>0x1a leshort x version: %d.
  175. >>>0x18 leshort x \b%d
  176. >>>0x1c lelong x tracks: %d
  177. 0 string GCR-1541 GCR Image
  178. >8 byte x version: %i
  179. >9 byte x tracks: %i
  180. 9 string PSUR ARC archive (c64)
  181. 2 string -LH1- LHA archive (c64)
  182. 0 string C64File PC64 Emulator file
  183. >8 string >\0 "%s"
  184. 0 string C64Image PC64 Freezer Image
  185. 0 beshort 0x38CD C64 PCLink Image
  186. 0 string CBM\144\0\0 Power 64 C64 Emulator Snapshot
  187. 0 belong 0xFF424CFF WRAptor packer (c64)
  188. # URL: http://fileformats.archiveteam.org/wiki/T64
  189. # Reference: http://ist.uwaterloo.ca/~schepers/formats/T64.TXT
  190. # https://vice-emu.sourceforge.io/vice_16.html#SEC394
  191. # https://www.infinite-loop.at/Power64/Documentation/Power64-ReadMe/AE-File_Formats.html
  192. # http://mark0.net/download/triddefs_xml.7z/defs/e/emu-t64.trid.xml
  193. # Note: called "Commodore 64 Tape container" by TrID, "T64 Tape Image Format" by DROID via PUID fmt/820 and
  194. # "T64 tape Image" by ./c64,v 1.14
  195. # verified by command like `deark -m t64 -l -d2 Caitan_the_Demo.t64` and
  196. # `cbmconvert -v2 -t -D4 ironmanoffroad.d64 ironmanoffroad.t64`
  197. # 32 byte signature starting like C64S\x20tape\x20file
  198. # C64\x20tape\x20image\x20file\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0
  199. # C64S\x20tape\x20image\x20file\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0
  200. 0 string/b C64
  201. # skip raw Commodore TAPe by check for unsed areas (\0 filled) and valid low (40h+m*20h; m=0-FFffh) offset
  202. >0x46 ubequad&0xFFff1F00C0ffFFff 0 Commodore Tape image
  203. #!:mime application/octet-stream
  204. #!:mime application/x-commodore-tape
  205. !:ext t64
  206. # version like: 0100h (examples found) 0101h 0200h (no examples)
  207. >>32 leshort x Version:%#x
  208. #>>32 leshort !0x0100 Version:%#x
  209. # number of used directory entries like: 0 1 2 5
  210. >>36 leshort !0 Entries:%i
  211. # tape container name, 24 characters (padded with 20h but with A0h for DirMaster created samples) like:
  212. # ->ZYRON'S PD<- IMAGETAPE MY-T64-TEST\240\240\240 OPERATIONWOLF+3-711.T64
  213. >>40 string/24/Tb >\040 Name:%.24s
  214. # MaxFiles; maximal directory entries like: 0 1 2 5 30 (=1Eh some emulators expect exactly this value) 31 32
  215. >>34 uleshort x MaxFiles:%u
  216. # 1st C64 filetype: 0~free 1~normal tape file 2~tape file with header 3~memory snapshot 4~tape block 5~digitized stream 6-255~reserved
  217. >>0x40 ubyte !1 \b, C64 file type %#x
  218. # 1st start address or load address of first entry like: 0000 (empty|snapshot) 04a0h (ironmanoffroad.t64) 0801h (typically) 1201h (3501_quizmaster_program_s1.t64)
  219. >>0x42 uleshort !0x0801 \b, load address %#4.4x
  220. # 1st actual end address in memory
  221. >>0x44 uleshort x \b, end address %#4.4x
  222. # reserved; must be 0
  223. >>0x26 ubeshort !0 \b, at +0x26 %#x
  224. # not used like: 0 (examples found and according to TrID)
  225. >>0x46 ubeshort !0 \b, at 0x46 %#4.4x
  226. # not used like: 0 (examples found and according to TrID)
  227. >>0x4c ubelong !0 \b, at 0x4C %#8.8x
  228. # offset (=64+32*m) into 1st container file like: 0 (empty) 60h 80h E0h 400h 440h ...
  229. >>0x48 ulelong >0 \b, at %#x
  230. # 1st filename (in PETASCII, padded with 20h, not A0h) like: "DRILLINSTR. /HTL" "WIZBALL+ " ...
  231. >>>0x50 string/16/bT x "%0.16s"
  232. # https://www.lyonlabs.org/commodore/onrequest/Inside_Commodore_Dos.pdf
  233. # file type like: 0~Scratched 1~SEQunclosed 81h~SEQ 82h~PRG C2h~PRGlocked ...
  234. >>>0x41 ubyte x
  235. >>>>0x41 ubyte =0x00 Scratched type
  236. >>>>0x41 ubyte =0x01 SEQ unclosed type
  237. #>>>>0x41 ubyte =0x44 foo type
  238. >>>>0x41 ubyte =0x80 DEL type
  239. >>>>0x41 ubyte =0x81 SEQ type
  240. >>>>0x41 ubyte =0x82 PRG type
  241. >>>>0x41 ubyte =0x83 USR type
  242. >>>>0x41 ubyte =0x84 REL type
  243. >>>>0x41 ubyte =0xC2 PRG locked type
  244. # other unusual file type
  245. >>>>0x41 default x
  246. >>>>>0x41 ubyte x %#2.2x type
  247. # inspect 1st entry content (often Commodore C64 BASIC program *.PRG) without load adress
  248. #>>(0x48.l) ubequad x \b, 1st data %16.16llx...
  249. # Raw tape file format (.tap files)
  250. # Esa Hyyti <esa@netlab.tkk.fi>
  251. # Update: Joerg Jenderek
  252. # URL: http://fileformats.archiveteam.org/wiki/Tap_file
  253. # https://vice-emu.sourceforge.io/vice_16.html#SEC392
  254. # Reference: http://ist.uwaterloo.ca/~schepers/formats/TAP.TXT
  255. # Note: called "TAP (Commodore 64)" by DROID via PUID fmt/802
  256. # a variant starting with C16-TAPE-RAW should exist, but no examples found
  257. 0 string/b C64-TAPE-RAW Commodore raw Tape image (platform
  258. #0 string C64-TAPE-RAW C64 Raw Tape File (.tap),
  259. #!:mime application/octet-stream
  260. !:mime application/x-commodore-tape
  261. !:ext tap
  262. # According to TrID als raw suffix, but no such samples found
  263. #!:ext tap/raw
  264. # computer platform like: 0~C64 1~VIC-20 2~C16 Plus/4 3~PET 4~C5x0 5~C6x0 C7x0
  265. >0xD ubyte 0 C64
  266. >0xD ubyte 1 VIC-20
  267. >0xD ubyte 2 C16 Plus/4
  268. >0xD ubyte 3 PET
  269. >0xD ubyte 4 C5x0
  270. >0xD ubyte 5 C6x0 C7x0
  271. # this should not happen!
  272. >0xD ubyte >5 %#2.2x
  273. >0xD ubyte x \b),
  274. # Reference: http://mark0.net/download/triddefs_xml.7z/defs/t/tap.trid.xml
  275. # http://mark0.net/download/triddefs_xml.7z/defs/t/tap-1.trid.xml
  276. # Note: called "C64 Tape image format" (v0-original) (v1-updated)" by TrID
  277. # TAP version like: 0~OriginalLayout 1~Updated (often)
  278. >0x0c byte x Version:%u,
  279. # file data size (not including header)
  280. >0x10 lelong x Length:%u cycles
  281. # video standard like: 0~PAL 1~NTSC 2~OLD NTSC 3~PALN
  282. >0xE ubyte x \b, video
  283. >0xE ubyte 0 PAL
  284. >0xE ubyte 1 NTSC
  285. >0xE ubyte 2 old NTSC
  286. >0xE ubyte 3 PALN
  287. # this should not happen!
  288. >0xE ubyte >3 %#2.2x
  289. # reserved for future expansion like: 0
  290. >0xF ubyte !0 \b, at 0xF %#2.2x
  291. # file data
  292. #>014 ubequad x \b, data %16.16llx
  293. # magic for Goattracker2, http://covertbitops.c64.org/
  294. # from Alex Myczko <alex@aiei.ch>
  295. 0 string GTS5 GoatTracker 2 song
  296. >4 string >\0 \b, "%s"
  297. >36 string >\0 \b by %s
  298. >68 string >\0 \b (C) %s
  299. >100 byte >0 \b, %u subsong(s)
  300. # CBM BASIC (cc65 compiled)
  301. # Summary: binary executable or Basic program for Commodore C64 computers
  302. # Update: Joerg Jenderek
  303. # URL: http://fileformats.archiveteam.org/wiki/Commodore_BASIC_tokenized_file
  304. # Reference: https://www.c64-wiki.com/wiki/BASIC_token
  305. # https://github.com/thezerobit/bastext/blob/master/bastext.doc
  306. # http://mark0.net/download/triddefs_xml.7z/defs/p/prg-c64.trid.xml
  307. # TODO: unify Commodore BASIC/program sub routines
  308. # Note: "PUCrunch archive data" moved from ./archive and merged with c64-exe
  309. 0 leshort 0x0801
  310. # display Commodore C64 BASIC program (strength=50) after "Lynx archive" (strength=330) handled by ./archive
  311. #!:strength +0
  312. # if first token is not SYS this implies BASIC program in most cases
  313. >6 ubyte !0x9e
  314. # but sELF-ExTRACTING-zIP executable unzp6420.prg contains SYS token at end of second BASIC line (at 0x35)
  315. >>23 search/30 \323ELF-E\330TRACTING-\332IP
  316. >>>0 use c64-exe
  317. >>23 default x
  318. >>>0 use c64-prg
  319. # if first token is SYS this implies binary executable
  320. >6 ubyte =0x9e
  321. >>0 use c64-exe
  322. # display information about C64 binary executable (memory address, line number, token)
  323. 0 name c64-exe
  324. >0 uleshort x Commodore C64
  325. # http://a1bert.kapsi.fi/Dev/pucrunch/
  326. # start address 0801h; next offset 080bh; BASIC line number is 239=00EFh; BASIC instruction is SYS 2061
  327. # the above combination appartly also occur for other Commodore programs like: gunzip111.c64.prg
  328. # and there exist PUCrunch archive for other machines like C16 with other magics
  329. >0 string \x01\x08\x0b\x08\xef\x00\x9e\x32\x30\x36\x31 program, probably PUCrunch archive data
  330. !:mime application/x-compress-pucrunch
  331. !:ext prg/pck
  332. >0 string !\x01\x08\x0b\x08\xef\x00\x9e\x32\x30\x36\x31 program
  333. !:mime application/x-commodore-exec
  334. !:ext prg/
  335. # start address like: 801h
  336. >0 uleshort !0x0801 \b, start address %#4.4x
  337. # 1st BASIC fragment
  338. >2 use basic-line
  339. # jump to 1 byte before next BASIC fragment; this must be zero-byte marking the end of line
  340. >(2.s-0x800) ubyte x
  341. >>&-1 ubyte !0 \b, no EOL=%#x
  342. # valid 2nd BASIC fragment found only in sELF-ExTRACTING-zIP executable unzp6420.prg
  343. >>23 search/30 \323ELF-E\330TRACTING-\332IP
  344. # jump again from beginning
  345. >>>(2.s-0x800) ubyte x
  346. >>>>&0 use basic-line
  347. # Zero-byte marking the end of the BASIC line
  348. >-3 ubyte !0 \b, 3 last bytes %#2.2x
  349. # Two zero-bytes in place of the pointer to next BASIC line indicates the end of the program
  350. >>-2 ubeshort x \b%4.4x
  351. # display information about tokenized C64 BASIC program (memory address, line number, token)
  352. 0 name c64-prg
  353. >0 uleshort x Commodore C64 BASIC program
  354. !:mime application/x-commodore-basic
  355. # Tokenized BASIC programs were stored by Commodore as file type program "PRG" in separate field in directory structures.
  356. # So file name can have no suffix like in saveroms; When transferring to other platforms, they are often saved with .prg extensions.
  357. # BAS suffix is typically used for the BASIC source but also found in program pods.bas
  358. !:ext prg/bas/
  359. # start address like: 801h
  360. >0 uleshort !0x0801 \b, start address %#4.4x
  361. # 1st BASIC fragment
  362. >2 use basic-line
  363. # jump to 1 byte before next BASIC fragment; this must be zero-byte marking the end of line
  364. >(2.s-0x0800) ubyte x
  365. >>&-1 ubyte !0 \b, no EOL=%#x
  366. # 2nd BASIC fragment
  367. >>&0 use basic-line
  368. # zero-byte marking the end of the BASIC line
  369. >-3 ubyte !0 \b, 3 last bytes %#2.2x
  370. # Two zero-bytes in place of the pointer to next BASIC line indicates the end of the program
  371. >>-2 ubeshort x \b%4.4x
  372. # Summary: binary executable or Basic program for Commodore C128 computers
  373. # URL: https://en.wikipedia.org/wiki/Commodore_128
  374. # Reference: http://mark0.net/download/triddefs_xml.7z/defs/p/prg-c128.trid.xml
  375. # From: Joerg Jenderek
  376. # Note: Commodore 128 BASIC 7.0 variant; there exist varaints with different start addresses
  377. 0 leshort 0x1C01
  378. !:strength +1
  379. # GRR: line above with strength 51 (50+1) is too generic because it matches SVr3 curses screen image, big-endian with strength (50) handled by ./terminfo
  380. # probably skip SVr3 curses images with "invalid high" second line offset
  381. >2 uleshort <0x1D02
  382. # skip foo with "invalid low" second line offset
  383. >>2 uleshort >0x1C06
  384. # if first token is not SYS this implies BASIC program
  385. >>>6 ubyte !0x9e
  386. >>>>0 use c128-prg
  387. # if first token is SYS this implies binary executable
  388. >>>6 ubyte =0x9e
  389. >>>>0 use c128-exe
  390. # Summary: binary executable or Basic program for Commodore C128 computers
  391. # Note: Commodore 128 BASIC 7.1 extension by Rick Simon
  392. # start adress 132Dh
  393. #0 leshort 0x132D THIS_IS_C128_7.1
  394. #>0 use c128-prg
  395. # Summary: binary executable or Basic program for Commodore C128 computers
  396. # Note: Commodore 128 BASIC 7.0 saved with graphics mode enabled
  397. # start adress 4001h
  398. #0 leshort 0x4001 THIS_IS_C128_GRAPHIC
  399. #>0 use c128-prg
  400. # display information about tokenized C128 BASIC program (memory address, line number, token)
  401. 0 name c128-prg
  402. >0 uleshort x Commodore C128 BASIC program
  403. !:mime application/x-commodore-basic
  404. !:ext prg
  405. # start address like: 1C01h
  406. >0 uleshort !0x1C01 \b, start address %#4.4x
  407. # 1st BASIC fragment
  408. >2 use basic-line
  409. # jump to 1 byte before next BASIC fragment; this must be zero-byte marking the end of line
  410. >(2.s-0x1C00) ubyte x
  411. >>&-1 ubyte !0 \b, no EOL=%#x
  412. # 2nd BASIC fragment
  413. >>&0 use basic-line
  414. # Zero-byte marking the end of the BASIC line
  415. >-3 ubyte !0 \b, 3 last bytes %#2.2x
  416. # Two zero-bytes in place of the pointer to next BASIC line indicates the end of the program
  417. >>-2 ubeshort x \b%4.4x
  418. # display information about C128 program (memory address, line number, token)
  419. 0 name c128-exe
  420. >0 uleshort x Commodore C128 program
  421. !:mime application/x-commodore-exec
  422. !:ext prg/
  423. # start address like: 1C01h
  424. >0 uleshort !0x1C01 \b, start address %#4.4x
  425. # 1st BASIC fragment
  426. >2 use basic-line
  427. # jump to 1 byte before next BASIC fragment; this must be zero-byte marking the end of line
  428. >(2.s-0x1C00) ubyte x
  429. >>&-1 ubyte !0 \b, no EOL=%#x
  430. # no valid 2nd BASIC fragment in Commodore executables
  431. #>>&0 use basic-line
  432. # Zero-byte marking the end of the BASIC line
  433. >-3 ubyte !0 \b, 3 last bytes %#2.2x
  434. # Two zero-bytes in place of the pointer to next BASIC line indicates the end of the program
  435. >>-2 ubeshort x \b%4.4x
  436. # Summary: binary executable or Basic program for Commodore C16/VIC-20/Plus4 computers
  437. # URL: https://en.wikipedia.org/wiki/Commodore_Plus/4
  438. # Reference: http://mark0.net/download/triddefs_xml.7z/defs/p/prg-vic20.trid.xml
  439. # defs/p/prg-plus4.trid.xml
  440. # From: Joerg Jenderek
  441. # Note: there exist VIC-20 variants with different start address
  442. # GRR: line below is too generic because it matches Novell LANalyzer capture
  443. # with regular trace header record handled by ./sniffer
  444. 0 leshort 0x1001
  445. # skip regular Novell LANalyzer capture (novell-2.tr1 novell-lanalyzer.tr1 novell-win10.tr1) with "invalid low" token value 54h
  446. >6 ubyte >0x7F
  447. # skip regular Novell LANalyzer capture (novell-2.tr1 novell-lanalyzer.tr1 novell-win10.tr1) with "invalid low" second line offset 4Ch
  448. #>>2 uleshort >0x1006 OFFSET_NOT_TOO_LOW
  449. # skip foo with "invalid high" second line offset but not for 0x123b (Minefield.prg)
  450. #>>>2 uleshort <0x1102 OFFSET_NOT_TOO_HIGH
  451. # if first token is not SYS this implies BASIC program
  452. >>6 ubyte !0x9e
  453. # valid second end of line separator implies BASIC program
  454. >>>(2.s-0x1000) ubyte =0
  455. >>>>0 use c16-prg
  456. # invalid second end of line separator !=0 implies binary executable like: Minefield.prg
  457. >>>(2.s-0x1000) ubyte !0
  458. >>>>0 use c16-exe
  459. # if first token is SYS this implies binary executable
  460. >>6 ubyte =0x9e
  461. >>>0 use c16-exe
  462. # display information about C16 program (memory address, line number, token)
  463. 0 name c16-exe
  464. >0 uleshort x Commodore C16/VIC-20/Plus4 program
  465. !:mime application/x-commodore-exec
  466. !:ext prg/
  467. # start address like: 1001h
  468. >0 uleshort !0x1001 \b, start address %#4.4x
  469. # 1st BASIC fragment
  470. >2 use basic-line
  471. # jump to 1 byte before next BASIC fragment; this must be zero-byte marking the end of line
  472. >(2.s-0x1000) ubyte x
  473. >>&-1 ubyte !0 \b, no EOL=%#x
  474. # no valid 2nd BASIC fragment in excutables
  475. #>>&0 use basic-line
  476. # Zero-byte marking the end of the BASIC line
  477. >-3 ubyte !0 \b, 3 last bytes %#2.2x
  478. # Two zero-bytes in place of the pointer to next BASIC line indicates the end of the program
  479. >>-2 ubeshort x \b%4.4x
  480. # display information about tokenized C16 BASIC program (memory address, line number, token)
  481. 0 name c16-prg
  482. >0 uleshort x Commodore C16/VIC-20/Plus4 BASIC program
  483. !:mime application/x-commodore-basic
  484. !:ext prg
  485. # start address like: 1001h
  486. >0 uleshort !0x1001 \b, start address %#4.4x
  487. # 1st BASIC fragment
  488. >2 use basic-line
  489. # jump to 1 byte before next BASIC fragment; this must be zero-byte marking the end of line
  490. >(2.s-0x1000) ubyte x
  491. >>&-1 ubyte !0 \b, no EOL=%#x
  492. # 2nd BASIC fragment
  493. >>&0 use basic-line
  494. # Zero-byte marking the end of the BASIC line
  495. >-3 ubyte !0 \b, 3 last bytes %#2.2x
  496. # Two zero-bytes in place of the pointer to next BASIC line indicates the end of the program
  497. >>-2 ubeshort x \b%4.4x
  498. # Summary: binary executable or Basic program for Commodore VIC-20 computer with 8K RAM expansion
  499. # URL: https://en.wikipedia.org/wiki/VIC-20
  500. # Reference: http://mark0.net/download/triddefs_xml.7z/defs/p/prg-vic20-8k.trid.xml
  501. # From: Joerg Jenderek
  502. # Note: Basic v2.0 with Basic v4.0 extension (VIC20); there exist VIC-20 variants with different start addresses
  503. # start adress 1201h
  504. 0 leshort 0x1201
  505. # if first token is not SYS this implies BASIC program
  506. >6 ubyte !0x9e
  507. >>0 use vic-prg
  508. # if first token is SYS this implies binary executable
  509. >6 ubyte =0x9e
  510. >>0 use vic-exe
  511. # display information about Commodore VIC-20 BASIC+8K program (memory address, line number, token)
  512. 0 name vic-prg
  513. >0 uleshort x Commodore VIC-20 +8K BASIC program
  514. !:mime application/x-commodore-basic
  515. !:ext prg
  516. # start address like: 1201h
  517. >0 uleshort !0x1201 \b, start address %#4.4x
  518. # 1st BASIC fragment
  519. >2 use basic-line
  520. # jump to 1 byte before next BASIC fragment; this must be zero-byte marking the end of line
  521. >(2.s-0x1200) ubyte x
  522. >>&-1 ubyte !0 \b, no EOL=%#x
  523. # 2nd BASIC fragment
  524. >>&0 use basic-line
  525. # Zero-byte marking the end of the BASIC line
  526. >-3 ubyte !0 \b, 3 last bytes %#2.2x
  527. # Two zero-bytes in place of the pointer to next BASIC line indicates the end of the program
  528. >>-2 ubeshort x \b%4.4x
  529. # display information about Commodore VIC-20 +8K program (memory address, line number, token)
  530. 0 name vic-exe
  531. >0 uleshort x Commodore VIC-20 +8K program
  532. !:mime application/x-commodore-exec
  533. !:ext prg/
  534. # start address like: 1201h
  535. >0 uleshort !0x1201 \b, start address %#4.4x
  536. # 1st BASIC fragment
  537. >2 use basic-line
  538. # jump to 1 byte before next BASIC fragment; this must be zero-byte marking the end of line
  539. >(2.s-0x0400) ubyte x
  540. >>&-1 ubyte !0 \b, no EOL=%#x
  541. # no valid 2nd BASIC fragment in excutables
  542. #>>&0 use basic-line
  543. # Zero-byte marking the end of the BASIC line
  544. >-3 ubyte !0 \b, 3 last bytes %#2.2x
  545. # Two zero-bytes in place of the pointer to next BASIC line indicates the end of the program
  546. >>-2 ubeshort x \b%4.4x
  547. # Summary: binary executable or Basic program for Commodore PET computers
  548. # URL: https://en.wikipedia.org/wiki/Commodore_PET
  549. # Reference: http://mark0.net/download/triddefs_xml.7z/defs/p/prg-pet.trid.xml
  550. # From: Joerg Jenderek
  551. # start adress 0401h
  552. 0 leshort 0x0401
  553. !:strength +1
  554. # GRR: line above with strength 51 (50+1) is too generic because it matches TTComp archive data, ASCII, 1K dictionary
  555. # (strength=48=50-2) handled by ./archive and shared library (strength=50) handled by ./ibm6000
  556. # skip TTComp archive data, ASCII, 1K dictionary ttcomp-ascii-1k.bin with "invalid high" second line offset 4162h
  557. >2 uleshort <0x0502
  558. # skip foo with "invalid low" second line offset
  559. #>>2 uleshort >0x0406 OFFSET_NOT_TOO_LOW
  560. # skip bar with "invalid end of line"
  561. #>>>(2.s-0x0400) ubyte =0 END_OF_LINE_OK
  562. # if first token is not SYS this implies BASIC program
  563. >>6 ubyte !0x9e
  564. >>>0 use pet-prg
  565. # if first token is SYS this implies binary executable
  566. >>6 ubyte =0x9e
  567. >>>0 use pet-exe
  568. # display information about Commodore PET BASIC program (memory address, line number, token)
  569. 0 name pet-prg
  570. >0 uleshort x Commodore PET BASIC program
  571. !:mime application/x-commodore-basic
  572. !:ext prg
  573. # start address like: 0401h
  574. >0 uleshort !0x0401 \b, start address %#4.4x
  575. # 1st BASIC fragment
  576. >2 use basic-line
  577. # jump to 1 byte before next BASIC fragment; this must be zero-byte marking the end of line
  578. >(2.s-0x0400) ubyte x
  579. # 2nd BASIC fragment
  580. >>&0 use basic-line
  581. # zero-byte marking the end of the BASIC line
  582. >-3 ubyte !0 \b, 3 last bytes %#2.2x
  583. # Two zero-bytes in place of the pointer to next BASIC line indicates the end of the program
  584. >>-2 ubeshort x \b%4.4x
  585. # display information about Commodore PET program (memory address, line number, token)
  586. 0 name pet-exe
  587. >0 uleshort x Commodore PET program
  588. !:mime application/x-commodore-exec
  589. !:ext prg/
  590. # start address like: 0401h
  591. >0 uleshort !0x0401 \b, start address %#4.4x
  592. # 1st BASIC fragment
  593. >2 use basic-line
  594. # jump to 1 byte before next BASIC fragment; this must be zero-byte marking the end of line
  595. >(2.s-0x0400) ubyte x
  596. >>&-1 ubyte !0 \b, no EOL=%#x
  597. # no valid 2nd BASIC fragment in excutables
  598. #>>&0 use basic-line
  599. # Zero-byte marking the end of the BASIC line
  600. >-3 ubyte !0 \b, 3 last bytes %#2.2x
  601. # Two zero-bytes in place of the pointer to next BASIC line indicates the end of the program
  602. >>-2 ubeshort x \b%4.4x
  603. # display information about tokenized BASIC line (memory address, line number, Token)
  604. 0 name basic-line
  605. # pointer to memory address of beginning of "next" BASIC line
  606. # greater then previous offset but maximal 100h difference
  607. >0 uleshort x \b, offset %#4.4x
  608. # offset 0x0000 indicates the end of BASIC program; so bytes afterwards may be some other data
  609. >0 uleshort 0
  610. # not line number but first 2 data bytes
  611. >>2 ubeshort x \b, data %#4.4x
  612. # not token but next 2 data bytes
  613. >>4 ubeshort x \b%4.4x
  614. # not token arguments but next data bytes
  615. >>6 ubequad x \b%16.16llx
  616. >>14 ubequad x \b%16.16llx...
  617. # like 0x0d20352020204c594e5820495820204259205749 "\r 5 LYNX IX BY WILL CORLEY" for LyNX archive Darkon.lnx handled by ./archive
  618. #>>3 string x "%-0.30s"
  619. >0 uleshort >0
  620. # BASIC line number with range from 0 to 65520; practice to increment numbers by some value (5, 10 or 100)
  621. >>2 uleshort x \b, line %u
  622. # https://www.c64-wiki.com/wiki/BASIC_token
  623. # The "high-bit" bytes from #128-#254 stood for the various BASIC commands and mathematical operators
  624. >>4 ubyte x \b, token (%#x)
  625. # https://www.c64-wiki.com/wiki/REM
  626. >>4 string \x8f REM
  627. # remark string like: ** SYNTHESIZER BY RICOCHET **
  628. >>>5 string >\0 %s
  629. #>>>>&1 uleshort x \b, NEXT OFFSET %#4.4x
  630. # https://www.c64-wiki.com/wiki/PRINT
  631. >>4 string \x99 PRINT
  632. # string like: "Hello world" "\021 \323ELF-E\330TRACTING-\332IP (64 ONLY)\016\231":\2362141
  633. >>>5 string x %s
  634. #>>>>&0 ubequad x AFTER_PRINT=%#16.16llx
  635. # https://www.c64-wiki.com/wiki/POKE
  636. >>4 string \x97 POKE
  637. # <Memory address>,<number>
  638. >>>5 regex \^[0-9,\040]+ %s
  639. # BASIC command delimiter colon (:=3Ah)
  640. >>>>&-2 ubyte =0x3A
  641. # after BASIC command delimiter colon remaining (<255) other tokenized BASIC commands
  642. >>>>>&0 string x "%s"
  643. # https://www.c64-wiki.com/wiki/SYS 0x9e=\236
  644. >>4 string \x9e SYS
  645. # SYS <Address> parameter is a 16-bit unsigned integer; in the range 0 - 65535
  646. >>>5 regex \^[0-9]{1,5} %s
  647. # maybe followed by spaces, "control-characters" or colon (:) followed by next commnds or in victracker.prg
  648. # (\302(43)\252256\254\302(44)\25236) /T.L.R/
  649. #>>>5 string x SYS_STRING="%s"
  650. # https://www.c64-wiki.com/wiki/GOSUB
  651. >>4 string \x8d GOSUB
  652. # <line>
  653. >>>5 string >\0 %s