Update puce6502.c

This commit is contained in:
ArthurFerreira2 2020-08-09 12:46:32 +02:00 committed by GitHub
parent ecb16061eb
commit 753946cc76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,14 +52,9 @@ struct Register {
} reg; } reg;
// instruction timing : // instruction timing :
// http://nparker.llx.com/a2/opcodes.html // http://nparker.llx.com/a2/opcodes.html
// http://wouter.bbcmicro.net/general/6502/6502_opcodes.html // http://wouter.bbcmicro.net/general/6502/6502_opcodes.html
// IMPLEMENTED :
// The conditional branch instructions require a second extra cycle if the
// branch happens and crosses a page boundary.
// NOT IMPLEMENTED : // NOT IMPLEMENTED :
// Absolute-X, absolute-Y, and Zpage-Y addressing modes need an extra cycle // Absolute-X, absolute-Y, and Zpage-Y addressing modes need an extra cycle
// if indexing crosses a page boundary, or if the instruction writes to memory. // if indexing crosses a page boundary, or if the instruction writes to memory.