1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2024-12-11 18:49:16 +00:00

Add commented out debug message.

This commit is contained in:
Radosław Kujawa 2017-01-24 22:18:21 +01:00
parent 90b6c06e32
commit 47028b0e26

View File

@ -26,6 +26,7 @@ bus_read_1(bus_t *t, uint16_t addr)
void void
bus_write_1(bus_t *t, uint16_t addr, uint8_t val) bus_write_1(bus_t *t, uint16_t addr, uint8_t val)
{ {
/* printf("bus WRITE @ %x value %x\n", addr, val); */
t->space[addr] = val; t->space[addr] = val;
} }