mirror of
https://github.com/sxpert/hp-saturn
synced 2024-11-16 19:50:19 +01:00
25 lines
473 B
Verilog
25 lines
473 B
Verilog
|
|
/**************************************************************************************************
|
|
*
|
|
* Bus commands
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
`ifndef _BUS_COMMANDS
|
|
`define _BUS_COMMANDS
|
|
|
|
`define BUSCMD_NOP 0
|
|
`define BUSCMD_ID 1
|
|
`define BUSCMD_PC_READ 2
|
|
`define BUSCMD_DP_READ 3
|
|
`define BUSCMD_PC_WRITE 4
|
|
`define BUSCMD_DP_WRITE 5
|
|
`define BUSCMD_LOAD_PC 6
|
|
`define BUSCMD_LOAD_DP 7
|
|
`define BUSCMD_CONFIGURE 8
|
|
`define BUSCMD_UNCONFIGURE 9
|
|
`define BUSCMD_RESET 15
|
|
|
|
`endif
|