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

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