Skip to content
Snippets Groups Projects
Commit 274432fb authored by dam1n19's avatar dam1n19
Browse files

Fixed lint errors in nanosoc

parent c5c00a20
No related branches found
No related tags found
1 merge request!1changed imem to rom to allow initial program loading, updated bootloader code...
...@@ -73,13 +73,14 @@ module nanosoc_sysio_decode #( ...@@ -73,13 +73,14 @@ module nanosoc_sysio_decode #(
// Peripheral Selection decode logic // Peripheral Selection decode logic
// ---------------------------------------------------------- // ----------------------------------------------------------
assign apbsys_hsel = hsel & (haddr[31:16]==16'h4000); // 0x40000000 assign apbsys_hsel = hsel & (haddr[31:16]==
BASEADDR_APBSS[31:16]); // 0x40000000
assign gpio0_hsel = hsel & (haddr[31:12]== assign gpio0_hsel = hsel & (haddr[31:12]==
BASEADDR_GPIO0[31:12]); // 0x40010000 BASEADDR_GPIO0[31:12]); // 0x40010000
assign gpio1_hsel = hsel & (haddr[31:12]== assign gpio1_hsel = hsel & (haddr[31:12]==
BASEADDR_GPIO1[31:12]); // 0x40011000 BASEADDR_GPIO1[31:12]); // 0x40011000
assign sysctrl_hsel = hsel & (haddr[31:12]== assign sysctrl_hsel = hsel & (haddr[31:12]==
BASEADDR_SYSCTRL[31:12]); // 0x4001F000 BASEADDR_SYSCTRL[31:12]); // 0x4001F000
// ---------------------------------------------------------- // ----------------------------------------------------------
// Default slave decode logic // Default slave decode logic
......
...@@ -128,7 +128,6 @@ module nanosoc_system #( ...@@ -128,7 +128,6 @@ module nanosoc_system #(
// System Reset Request Signals // System Reset Request Signals
wire SYS_SYSRESETREQ; // System Request from System Managers wire SYS_SYSRESETREQ; // System Request from System Managers
wire SYS_PRMURESETREQ; // CPU Control Reset Request (PMU and Reset Unit)
// AHB Clocks and Resets // AHB Clocks and Resets
wire SYS_PORESETn; // System Power On Reset wire SYS_PORESETn; // System Power On Reset
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment