hp-saturn/opcodes/2n_P_EQ_n.v
2019-02-09 19:18:58 +01:00

15 lines
268 B
Verilog

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