2023-02-13 16:49:17 +00:00
|
|
|
/* proc_state_def.v - Definitions of the states in the main state machine
|
|
|
|
of the 9086 CPU.
|
|
|
|
|
|
|
|
This file is part of the 9086 project.
|
|
|
|
|
|
|
|
Copyright (c) 2023 Efthymios Kritikos
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
2023-02-14 13:13:40 +00:00
|
|
|
`define PROC_STATE_BITS 5
|
|
|
|
|
|
|
|
|
|
|
|
`define PROC_HALT_STATE 5'b00000
|
2023-02-09 14:46:21 +00:00
|
|
|
|
|
|
|
/*INSTRUCTION FETCH STATE*/
|
2023-02-14 13:13:40 +00:00
|
|
|
`define PROC_IF_STATE_ENTRY 5'b00001
|
|
|
|
`define PROC_IF_WRITE_CIR 5'b00010
|
|
|
|
`define PROC_IF_STATE_EXTRA_FETCH_SET 5'b00011
|
|
|
|
`define PROC_IF_STATE_EXTRA_FETCH 5'b00100
|
2023-02-09 14:46:21 +00:00
|
|
|
|
|
|
|
/*DECODE SATE*/
|
2023-02-14 13:13:40 +00:00
|
|
|
`define PROC_DE_STATE_ENTRY 5'b01000
|
|
|
|
`define PROC_DE_LOAD_16_PARAM 5'b01001
|
|
|
|
`define PROC_DE_LOAD_16_EXTRA_FETCH_SET 5'b01010
|
|
|
|
`define PROC_DE_LOAD_16_EXTRA_FETCH 5'b01011
|
2023-02-09 14:46:21 +00:00
|
|
|
|
2023-02-11 20:27:28 +00:00
|
|
|
/*MEM/IO READ*/
|
2023-02-14 13:13:40 +00:00
|
|
|
`define RPOC_MEMIO_READ 5'b10000
|
|
|
|
`define PROC_MEMIO_READ_SETADDR 5'b10001
|
|
|
|
`define PROC_MEMIO_GET_ALIGNED_DATA 5'b10010 /* :) */
|
|
|
|
`define PROC_MEMIO_GET_UNALIGNED_DATA 5'b10011 /* :( */
|
2023-02-11 20:27:28 +00:00
|
|
|
|
2023-02-09 14:46:21 +00:00
|
|
|
/*EXECUTE STATE*/
|
2023-02-14 13:13:40 +00:00
|
|
|
`define PROC_EX_STATE_ENTRY 5'b11000
|
|
|
|
`define PROC_EX_STATE_EXIT 5'b11001
|
|
|
|
|
|
|
|
/*MEM/IO WRITE*/
|
|
|
|
`define PROC_MEMIO_WRITE 5'b10100
|
|
|
|
//`define PROC_MEMIO_WRITE_SETADDR 5'b10101
|
|
|
|
`define PROC_MEMIO_PUT_ALIGNED_DATA 5'b10101
|
|
|
|
`define PROC_MEMIO_PUT_UNALIGNED_DATA 5'b10110
|
|
|
|
`define PROC_MEMIO_PUT_BYTE 5'b10111
|
|
|
|
`define PROC_MEMIO_PUT_BYTE_STOP_READ 5'b11110 /****/
|
|
|
|
`define PROC_MEMIO_PUT_BYTE_WRITE 5'b11111 /****/
|
|
|
|
|