mirror of
https://github.com/sxpert/hp-saturn
synced 2024-11-16 19:50:19 +01:00
15 lines
268 B
Verilog
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
|