mirror of
https://github.com/sxpert/hp-saturn
synced 2025-01-20 10:26:31 +01:00
add more instruction blocks
This commit is contained in:
parent
5c5d24f189
commit
2fb29bcd9d
1 changed files with 28 additions and 0 deletions
|
@ -6,6 +6,8 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
`ifndef _SATURN_DECODER_BLOCK_VARS
|
||||||
|
`define _SATURN_DECODER_BLOCK_VARS
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
|
@ -82,6 +84,30 @@ reg block_80Cx;
|
||||||
wire do_block_80Cx;
|
wire do_block_80Cx;
|
||||||
assign do_block_80Cx = do_on_other_nibbles && block_80Cx;
|
assign do_block_80Cx = do_on_other_nibbles && block_80Cx;
|
||||||
|
|
||||||
|
reg block_81x;
|
||||||
|
wire do_block_81x;
|
||||||
|
assign do_block_81x = do_on_other_nibbles && block_81x;
|
||||||
|
|
||||||
|
reg block_81Ax;
|
||||||
|
wire do_block_81Ax;
|
||||||
|
assign do_block_81Ax = do_on_other_nibbles && block_81Ax;
|
||||||
|
|
||||||
|
reg block_81Af0x;
|
||||||
|
wire do_block_81Af0x;
|
||||||
|
assign do_block_81Af0x = do_on_other_nibbles && block_81Af0x;
|
||||||
|
|
||||||
|
reg block_81Af1x;
|
||||||
|
wire do_block_81Af1x;
|
||||||
|
assign do_block_81Af1x = do_on_other_nibbles && block_81Af1x;
|
||||||
|
|
||||||
|
reg block_81Af2x;
|
||||||
|
wire do_block_81Af2x;
|
||||||
|
assign do_block_81Af2x = do_on_other_nibbles && block_81Af2x;
|
||||||
|
|
||||||
|
reg block_81Afx;
|
||||||
|
wire do_block_81Afx;
|
||||||
|
assign do_block_81Afx = do_on_other_nibbles && block_81Afx;
|
||||||
|
|
||||||
reg block_82x;
|
reg block_82x;
|
||||||
wire do_block_82x;
|
wire do_block_82x;
|
||||||
assign do_block_82x = do_on_other_nibbles && block_82x;
|
assign do_block_82x = do_on_other_nibbles && block_82x;
|
||||||
|
@ -153,3 +179,5 @@ assign do_block_sr_bit = do_on_other_nibbles && block_sr_bit;
|
||||||
|
|
||||||
wire in_fields_table;
|
wire in_fields_table;
|
||||||
assign in_fields_table = go_fields_table && !fields_table_done;
|
assign in_fields_table = go_fields_table && !fields_table_done;
|
||||||
|
|
||||||
|
`endif
|
Loading…
Reference in a new issue