hp-saturn/opcodes/2n_P_EQ_n.v

16 lines
268 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
2019-02-09 19:18:58 +01:00
P <= nb_in;
2019-02-07 22:54:06 +01:00
decstate <= `DEC_START;
`ifdef SIM
2019-02-09 19:18:58 +01:00
$display("%05h P=\t%h", inst_start_PC, nb_in);
2019-02-07 22:54:06 +01:00
`endif
end