Line 84... |
Line 84... |
input [3:0] space;
|
input [3:0] space;
|
|
|
integer i,j;
|
integer i,j;
|
begin
|
begin
|
myFormat = 0;
|
myFormat = 0;
|
|
`ifdef VXL // no +:
|
|
`else
|
j = 0;
|
j = 0;
|
for ( i=0; i < 32; i=i+1) // Copy string2
|
for ( i=0; i < 32; i=i+1) // Copy string2
|
begin
|
begin
|
myFormat[8*i +: 8] = string2[8*i +: 8];
|
myFormat[8*i +: 8] = string2[8*i +: 8];
|
if ((string2[8*i +: 8] == 0) && (j == 0)) j=i;
|
if ((string2[8*i +: 8] == 0) && (j == 0)) j=i;
|
Line 97... |
Line 99... |
myFormat[8*(j+i) +: 8] = " ";
|
myFormat[8*(j+i) +: 8] = " ";
|
j=j+space;
|
j=j+space;
|
|
|
for ( i=0; i < 32; i=i+1) // Copy string1
|
for ( i=0; i < 32; i=i+1) // Copy string1
|
myFormat[8*(j+i) +: 8] = string1[8*i +: 8];
|
myFormat[8*(j+i) +: 8] = string1[8*i +: 8];
|
|
`endif
|
end
|
end
|
endfunction
|
endfunction
|
|
|
|
|
//=============================================================================
|
//=============================================================================
|
// 2) CONNECTIONS TO MSP430 CORE INTERNALS
|
// 2) CONNECTIONS TO MSP430 CORE INTERNALS
|
//=============================================================================
|
//=============================================================================
|
|
|
wire [2:0] i_state_bin = dut.openMSP430_0.frontend_0.i_state;
|
wire [2:0] i_state_bin = tb_openMSP430_fpga.dut.openMSP430_0.frontend_0.i_state;
|
wire [3:0] e_state_bin = dut.openMSP430_0.frontend_0.e_state;
|
wire [3:0] e_state_bin = tb_openMSP430_fpga.dut.openMSP430_0.frontend_0.e_state;
|
|
|
wire decode = dut.openMSP430_0.frontend_0.decode;
|
wire decode = tb_openMSP430_fpga.dut.openMSP430_0.frontend_0.decode;
|
wire [15:0] ir = dut.openMSP430_0.frontend_0.ir;
|
wire [15:0] ir = tb_openMSP430_fpga.dut.openMSP430_0.frontend_0.ir;
|
wire irq_detect = dut.openMSP430_0.frontend_0.irq_detect;
|
wire irq_detect = tb_openMSP430_fpga.dut.openMSP430_0.frontend_0.irq_detect;
|
wire [3:0] irq_num = dut.openMSP430_0.frontend_0.irq_num;
|
wire [3:0] irq_num = tb_openMSP430_fpga.dut.openMSP430_0.frontend_0.irq_num;
|
wire [15:0] pc = dut.openMSP430_0.frontend_0.pc;
|
wire [15:0] pc = tb_openMSP430_fpga.dut.openMSP430_0.frontend_0.pc;
|
|
|
|
|
//=============================================================================
|
//=============================================================================
|
// 3) GENERATE DEBUG SIGNALS
|
// 3) GENERATE DEBUG SIGNALS
|
//=============================================================================
|
//=============================================================================
|
Line 410... |
Line 412... |
|
|
|
|
// Currently executed instruction
|
// Currently executed instruction
|
//================================
|
//================================
|
|
|
wire [32*8-1:0] inst_short = inst_name;
|
wire [8*32-1:0] inst_short = inst_name;
|
|
|
reg [32*8-1:0] inst_full;
|
reg [8*32-1:0] inst_full;
|
always @(inst_type or inst_name or inst_bw or inst_as or inst_ad)
|
always @(inst_type or inst_name or inst_bw or inst_as or inst_ad)
|
begin
|
begin
|
inst_full = myFormat(inst_name, inst_bw, 0);
|
inst_full = myFormat(inst_name, inst_bw, 0);
|
inst_full = myFormat(inst_full, inst_as, 1);
|
inst_full = myFormat(inst_full, inst_as, 1);
|
if (inst_type=="TWO-OP")
|
if (inst_type=="TWO-OP")
|