Added on 3 Jan 2017, Last updated on 26 Jan 2017.
26 Jan 2017
Added Super Chip-8 support
3 Jan 2017
Initial upload
My (rather limited) assembler uses the opcode mnemonics from "Cowgod's Chip 8 technical reference" (here). All values need to be hexadecimal, prefixed with "#" and the proper amount of digits.
Labels are defined by the labelname followed by a colon. They can be used in JP labelname, JP V0, labelname, CALL labelname and LD I, labelname.
Labels cannot start with a "#" or a "V".
Comments can be added at the end of a line or on a line itself by prefixing it with ";".
Data-bytes can be added by starting with a "#" and folowing it with the 2-digit hexadeciaml value.