[doc] Status and formatting

This commit is contained in:
2024-02-19 13:41:49 +05:30
parent 3b823ecaf9
commit 8714e906bc
3 changed files with 13 additions and 6 deletions

View File

@@ -16,6 +16,11 @@ This is a play at emulating a BytePusher machine.
- [ ] Load/Save memory - [ ] Load/Save memory
- [ ] Load a ROM - [ ] Load a ROM
## Usage instructions
TBD
## More information about the BytePusher VM ## More information about the BytePusher VM
https://esolangs.org/wiki/BytePusher https://esolangs.org/wiki/BytePusher

View File

@@ -31,6 +31,7 @@ impl Color {
/// wrap to black if needed /// wrap to black if needed
pub fn new(in_mem_color: u8) -> Color { pub fn new(in_mem_color: u8) -> Color {
if in_mem_color > Self::COLOR_MAX { if in_mem_color > Self::COLOR_MAX {
log::trace!("Invalid color {}, using 0", in_mem_color);
Color(0) Color(0)
} else { } else {
Color(in_mem_color) Color(in_mem_color)

View File

@@ -39,7 +39,8 @@ fn main() -> EmulatorResult<()> {
Event::Quit { .. } | Event::Quit { .. } |
Event::KeyDown { keycode: Some(Keycode::Escape), .. } => { Event::KeyDown { keycode: Some(Keycode::Escape), .. } => {
break 'running; break 'running;
} },
event => { event => {
log::trace!("Received window event {:?}",event); log::trace!("Received window event {:?}",event);
} }