hp-saturn/opcodes/0x.v

22 lines
348 B
Coq
Raw Normal View History

2019-02-07 22:54:06 +01:00
/******************************************************************************
* 0X
*
*
*/
2019-02-08 00:02:55 +01:00
`DEC_0X: begin
case (nibble)
4'h3:
`include "opcodes/03_RTNCC.v"
2019-02-08 11:55:47 +01:00
4'h4:
`include "opcodes/04_SETHEX.v"
2019-02-08 11:55:47 +01:00
4'h5:
`include "opcodes/05_SETDEC.v"
2019-02-08 00:02:55 +01:00
default: begin
$display("ERROR : DEC_0X");
decode_error <= 1;
end
endcase
end