mirror of
https://github.com/sxpert/hp-saturn
synced 2025-01-19 10:26:58 +01:00
19 lines
344 B
Verilog
19 lines
344 B
Verilog
/******************************************************************************
|
|
* 805 CONFIG
|
|
*
|
|
*
|
|
*/
|
|
|
|
`include "decstates.v"
|
|
|
|
`DEC_BX: begin
|
|
case (nb_in)
|
|
4'h8, 4'h9, 4'hA, 4'hB, 4'hC, 4'hD, 4'hE, 4'hF: begin
|
|
|
|
end
|
|
default: begin
|
|
$display("ERROR : DEC_BX");
|
|
decode_error <= 1;
|
|
end
|
|
endcase
|
|
end
|