Changes
Want to know what’s different between versions? Look no further…
Version 1.3
Fixes
- Updated the code to match the latest go-sdl2 release.
- Touched up the comments to change
///
to//
.
Version 1.2
Fixes
- Window creation flags error with latest SDL. Thanks to @renatorabelo for finding it!
Version 1.1
Fixes
- Fixed errors in README.
- Fixed scanning of string tokens.
Additions
- Added CHIP-8E instruction set.
- Added
SUPER
directive, required to use CHIP-48 instructions. - Added
EXTENDED
directive, required to use CHIP-8E instructions. - Added
ASCII
directive, for use with CHIP-8ELD A,VX
instruction. - Added use of back-quote (`) for text strings.
- Added Step Out functionality (
SHIFT
+F7
) to debugger.
Breaking Changes
- Use of the
SUPER
directive is now required before using CHIP-48 instructions. - Changed
LD B,VX
instruction toBCD VX
to match CHIP-8EBCD VX,VY
.
Version 1.0
Initial release.