hp-saturn/opcodes/80Cn_C_EQ_P_n.v
2019-02-08 11:15:16 +01:00

15 lines
280 B
Verilog

/******************************************************************************
* 80Cn C=P n
*
*
*/
`include "decstates.v"
`DEC_C_EQ_P_N: begin
C[nibble*4+:4] <= P;
decstate <= `DEC_START;
`ifdef SIM
$display("%05h C=P\t%h", inst_start_PC, nibble);
`endif
end