Assorted improvements to new opcode decoders

This commit is contained in:
Jeff 2016-09-24 15:12:02 -07:00 committed by Jeff Parsons
commit f82d6f1bfa
13 changed files with 861 additions and 610 deletions

View file

@ -225,6 +225,14 @@ var PDP11 = {
READ: 0x2,
WRITE: 0x4,
UPDATE: 0x6
},
/*
* Internal flags passed to writeByteByMode(), etc.
*/
WRITE: {
NORMAL: 0x0, // write byte or word normally
ZERO: 0x1, // zero byte or word
SIGNEXT: 0x2 // sign-extend a byte to a word
}
};