1
0
mirror of https://github.com/mre/mos6502.git synced 2026-04-25 08:16:57 +00:00

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
-2
View File
@@ -119,8 +119,6 @@ fn main() {
cpu.registers.program_counter = Address(0x4000);
cpu.run();
println!("{:?}", cpu);
}
```
-2
View File
@@ -106,6 +106,4 @@ fn main() {
cpu.registers.program_counter = Address(0x4000);
cpu.run();
println!("{:?}", cpu);
}