From 2fb29bcd9d0b64432df9c225b13556b68f526966 Mon Sep 17 00:00:00 2001 From: Raphael Jacquot Date: Tue, 19 Feb 2019 16:16:32 +0100 Subject: [PATCH] add more instruction blocks --- saturn_decoder_block_vars.v | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/saturn_decoder_block_vars.v b/saturn_decoder_block_vars.v index fafc5df..1758b09 100644 --- a/saturn_decoder_block_vars.v +++ b/saturn_decoder_block_vars.v @@ -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; 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; wire do_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; assign in_fields_table = go_fields_table && !fields_table_done; + +`endif \ No newline at end of file