Minor naming tweaks

- Linked to Wikipedia article on CHIP-8 in README
This commit is contained in:
Tony Bark 2021-03-08 16:00:54 -05:00
parent b6f6ffd15d
commit c2f76c61a1
3 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
# Retro8 # Retro-8
Retro8 is a CHIP-8 emulator based on Godot 3 and written in GDScript that I hope to turn into a fantasy console. Retro-8 is a [CHIP-8](https://en.wikipedia.org/wiki/CHIP-8) emulator based on Godot 3 and written in GDScript that I hope to turn into a fantasy console.
## License ## License

View file

@ -15,8 +15,8 @@ _global_script_class_icons={
[application] [application]
config/name="Retro8" config/name="Retro-8"
config/description="Chip8 emulator." config/description="Chip-8 emulator."
run/main_scene="res://scenes/Game.tscn" run/main_scene="res://scenes/Game.tscn"
config/icon="res://icon.png" config/icon="res://icon.png"

View file

@ -32,9 +32,9 @@ var fontSet = [
0xF0, 0x80, 0xF0, 0x80, 0x80 # F 0xF0, 0x80, 0xF0, 0x80, 0x80 # F
] ]
export var displayWidth = 64 export var displayWidth = 64
export var displayHeight = 32 export var displayHeight = 32
export var memSize = 4096 export var memSize = 4096
export var numRegisters = 16 export var numRegisters = 16
var displaySize = (displayWidth * displayHeight) var displaySize = (displayWidth * displayHeight)