Skip to content

Commit ed24928

Browse files
author
Ronny Hansen
committed
Add DEBUGFLAG input and update CSA_12_0 output signal for debugging clarity
1 parent 282b863 commit ed24928

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Verilog/ND120_TOP.v

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,12 @@ module ND120_TOP
2828
input wire btn2, //! Button 2, mapped to S2 (not labeled) on the board
2929
input wire uartRx, //! UART Receive pin
3030

31+
input wire DEBUGFLAG, // DEBUG FLAG
32+
3133
// Outputs
32-
output wire uartTx, //! UART Transmit pin
33-
output wire [6:0] led, //! 7-bit output for controlling LEDs
34+
output wire uartTx, //! UART Transmit pin
35+
output wire [6:0] led, //! 7-bit output for controlling LEDs
36+
output wire [12:0] CSA_12_0, //! Microcode Address (for debugging)
3437

3538

3639
// Signal from C-PLUG to CPU Board
@@ -238,6 +241,7 @@ module ND120_TOP
238241
.CSBITS (s_csbits), // Microcode CPU BITS
239242
.TEST_4_0 (s_test_4_0), // Test pads
240243
.TP1_INTRQ_n(s_tp1_intrq_n), // TP1 Interrupt
244+
.CSA_12_0 (CSA_12_0), // Microcode Address (for debugging)
241245
.LED (s_cpu_led[5:0]) // 6 bit LED signals
242246
);
243247

0 commit comments

Comments
 (0)