Skip to content

Commit

Permalink
Merge pull request #113 from dbalsom/improved_decode
Browse files Browse the repository at this point in the history
Merge table-based decode
  • Loading branch information
dbalsom committed May 1, 2024
2 parents b36b18b + f7e3ae8 commit d854d22
Show file tree
Hide file tree
Showing 19 changed files with 773 additions and 856 deletions.
20 changes: 11 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,16 @@

### Core Bug Fixes / Improvements

* CPU: Converted SegmentOverride enum to Option<Segment>, simplifying segment resolution logic in many places
* CPU: New 7-cycle bus access logic
* CPU: Refactored CycleText log format
* CPU: Added cyle stopwatch support
* CPU: Don't count individual REP iterations toward instruction counter
* CPU: Fixed call stack tracing (recursive calls will still cause overflow)
* 8088: Refactored instruction decode to a table-based lookup, replaced custom flags with values from group decode ROM.
* 8088: Converted SegmentOverride enum to Option<Segment>, simplifying segment resolution logic in many places
* 8088: New 7-cycle bus access logic
* 8088: Refactored CycleText log format
* 8088: Added cyle stopwatch support
* 8088: Don't count individual REP iterations toward instruction counter
* 8088: Fixed call stack tracing (recursive calls will still cause overflow)
* Reduced size of call stack history to avoid ridiculously tall windows
* CPU: Fixed cycle count reporting in Instruction History
* CPU: Added Interrupt, Trap and NMI history types
* 8088: Fixed cycle count reporting in Instruction History
* 8088: Added Interrupt, Trap and NMI history types
* EGA: Can now specify EGA dipswitch in machine configuration.
* Added an `ibm_ega_on_cga` config overlay with the right dipswitch for running FantasyLand
* BUS: Require IoDevice trait implementations to provide port description strings
Expand All @@ -78,7 +79,8 @@
* Control register implemented, and PPI group modes are now tracked
* New state dump format for new frontend PPI Viewer
* Implemented keyboard scancode serializer for PCJr (Still has some bugs)
* CGA: Fixed last-line CRTC flag logic. Fixes some severe glitches in Area 5150 I didn't notice because I have only been testing the first and last effect. (Thanks Sudo)
* CGA: Fixed last-line CRTC flag logic. Fixes some severe glitches in Area 5150 I didn't notice because I have only been
testing the first and last effect. (Thanks Sudo)

## [0.2.0](https://github.com/dbalsom/martypc/releases/tag/0.2.0b) (2024-04-01)

Expand Down
2 changes: 1 addition & 1 deletion core/src/bus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1593,7 +1593,7 @@ impl BusInterface {

self.seek(address);

debug.instr = match Cpu::decode(self) {
debug.instr = match Cpu::decode(self, true) {
Ok(instruction) => {
format!("{}", instruction)
}
Expand Down
16 changes: 7 additions & 9 deletions core/src/cpu_808x/addressing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ impl Cpu {
/// Load the EA operand for the current instruction, if applicable
/// (not all instructions with a mod r/m will load, ie, write-only instructions)
pub fn load_operand(&mut self) {
if self.i.flags & I_LOAD_EA != 0 {
if self.i.gdr().loads_ea() {
// This instruction loads its EA operand. Load and save into OPR.

let ea_mode: AddressingMode;
Expand Down Expand Up @@ -209,12 +209,11 @@ impl Cpu {
operand: OperandType,
seg_override: Option<Segment>,
) -> Option<u8> {
// The operand enums contain values peeked from instruction fetch. However for accurate cycle
// The operand enums may contain values peeked from instruction fetch. However, for accurate cycle
// timing, we have to fetch them again now.

// Ideally we would assert that the peeked operand values equal the fetched values, but this can
// fail with self-modifying code, such as the end credits of 8088mph.

// Originally we would assert that the peeked operand values equal the fetched values, but this can
// fail with self-modifying code, such as the end credits of 8088MPH.
match operand {
OperandType::Immediate8(_imm8) => {
let byte = self.q_read_u8(QueueType::Subsequent, QueueReader::Eu);
Expand Down Expand Up @@ -261,12 +260,11 @@ impl Cpu {
operand: OperandType,
seg_override: Option<Segment>,
) -> Option<u16> {
// The operand enums contain values peeked from instruction fetch. However for accurate cycle
// The operand enums may contain values peeked from instruction fetch. However, for accurate cycle
// timing, we have to fetch them again now.

// Ideally we would assert that the peeked operand values equal the fetched values, but this can
// fail with self-modifying code, such as the end credits of 8088mph.

// Originally we would assert that the peeked operand values equal the fetched values, but this can
// fail with self-modifying code, such as the end credits of 8088MPH.
match operand {
OperandType::Immediate16(_imm16) => {
let word = self.q_read_u16(QueueType::Subsequent, QueueReader::Eu);
Expand Down
Loading

0 comments on commit d854d22

Please sign in to comment.