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

15 lines
270 B
Verilog

/******************************************************************************
* 2n P= n
*
*
*/
`include "decstates.v"
`DEC_P_EQ_N: begin
P <= nibble;
decstate <= `DEC_START;
`ifdef SIM
$display("%05h P=\t%h", inst_start_PC, nibble);
`endif
end