| |
Flavioweb
Registered: Nov 2011 Posts: 463 |
Vice monitor: m $0001/$0000 != print peek(00/01). Why?
Simple:
start vice, in basic immediate mode give:
print peek(00)
47
print peek(01)
55
then start vice monitor:
m 0000
>C:0000 bd bd 00 aa
Sometimes in $00, sometimes is $BD...
..why? |
|
| |
dink Account closed
Registered: Mar 2012 Posts: 30 |
00 / 01 come from the cpu when you peek it. Check out http://codebase64.org/doku.php?id=base:6502_6510_coding under "The Addresses 00 and 01"
best regards,
- dink |
| |
iAN CooG
Registered: May 2002 Posts: 3194 |
you can see anything different (the actual ram content at 0/1) if you issue "bank rom" or "bank ram", while in normal mode, "bank cpu", you always see the cpu regs values, 2f/37 here. Unless you're using a broken VICE build. |
| |
Flavioweb
Registered: Nov 2011 Posts: 463 |
bank cpu
m 0000
>C:0000 2f 37
Thanks Ian =) |
| |
chatGPZ
Registered: Dec 2001 Posts: 11386 |
or just use the "r" command :) |
| |
Flavioweb
Registered: Nov 2011 Posts: 463 |
Quoting Groepazor just use the "r" command :)
|