Skip to content

Commit

Permalink
Merge pull request #1336 from ogamespec/master
Browse files Browse the repository at this point in the history
debugging 6502
  • Loading branch information
ogamespec authored Jun 10, 2024
2 parents 8118693 + 0b2b705 commit 340b9a7
Show file tree
Hide file tree
Showing 3 changed files with 180 additions and 52 deletions.
2 changes: 1 addition & 1 deletion HDL/Core6502/brk.v
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
`timescale 1ns/1ns

// The handling of all exceptions and BRK instruction is unified and is referred to as the BRK sequence”.
// The handling of all exceptions and BRK instruction is unified and is referred to as the "BRK sequence".

module BRKProcessing (
PHI1, PHI2,
Expand Down
2 changes: 1 addition & 1 deletion HDL/Core6502/pc.v
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ module PC (
wire IPC; // 1: Incerement PC
not (IPC, n_IPC);
wire [15:0] pc; // PC
wire [15:0] pcs; // PC Shadow
wire [15:0] pcs; // PC Shadow aka Select

endmodule // PC

Expand Down
Loading

0 comments on commit 340b9a7

Please sign in to comment.