mirror of
https://github.com/sxpert/hp-saturn
synced 2025-01-31 19:57:50 +01:00
15 lines
257 B
Verilog
15 lines
257 B
Verilog
/******************************************************************************
|
|
* 04 SETHEX
|
|
*
|
|
*
|
|
*/
|
|
|
|
`include "decstates.v"
|
|
|
|
begin
|
|
hex_dec <= `MODE_HEX;
|
|
decstate <= `DEC_START;
|
|
`ifdef SIM
|
|
$display("%05h SETHEX", inst_start_PC);
|
|
`endif
|
|
end
|