hp-saturn/opcodes/2n_P_EQ_n.v

16 lines
270 B
Coq
Raw Normal View History

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