Remove println to make compatible with no_std

This commit is contained in:
Matthias Endler 2018-10-30 01:23:39 +01:00
parent a28a92167e
commit 07d83c7c78
2 changed files with 0 additions and 4 deletions

View File

@ -119,8 +119,6 @@ fn main() {
cpu.registers.program_counter = Address(0x4000);
cpu.run();
println!("{:?}", cpu);
}
```

View File

@ -106,6 +106,4 @@ fn main() {
cpu.registers.program_counter = Address(0x4000);
cpu.run();
println!("{:?}", cpu);
}