hp-saturn/opcodes/80Cn_C_EQ_P_n.v

16 lines
280 B
Coq
Raw Normal View History

2019-02-07 22:54:06 +01:00
/******************************************************************************
* 80Cn C=P n
*
*
*/
`include "decstates.v"
`DEC_C_EQ_P_N: begin
C[nibble*4+:4] <= P;
decstate <= `DEC_START;
`ifdef SIM
2019-02-08 11:15:16 +01:00
$display("%05h C=P\t%h", inst_start_PC, nibble);
`endif
end