Port to internal AXI interfaces for the debug module.

This commit is contained in:
Jonathan Woodruff
2020-12-17 15:02:05 +00:00
parent bab989d6d2
commit 4dd0a73051
3 changed files with 14 additions and 15 deletions

View File

@@ -155,9 +155,9 @@ interface Debug_Module_IFC;
interface Client #(Bool, Bool) ndm_reset_client;
// Read/Write RISC-V memory
interface AXI4_Master_Synth #(Wd_MId_2x3, Wd_Addr, Wd_Data_Periph,
Wd_AW_User, Wd_W_User, Wd_B_User,
Wd_AR_User, Wd_R_User) master;
interface AXI4_Master #(Wd_MId_2x3, Wd_Addr, Wd_Data_Periph,
Wd_AW_User, Wd_W_User, Wd_B_User,
Wd_AR_User, Wd_R_User) master;
endinterface
// ================================================================
@@ -481,7 +481,7 @@ module mkDebug_Module (Debug_Module_IFC);
interface Client ndm_reset_client = dm_run_control.ndm_reset_client;
// Read/Write RISC-V memory
interface AXI4_Master_IFC master = dm_system_bus.master;
interface master = dm_system_bus.master;
endmodule
// ================================================================