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,7 +73,8 @@ module nanosoc_sysio_decode #(
// 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]==
BASEADDR_GPIO0[31:12]); // 0x40010000
assign gpio1_hsel = hsel & (haddr[31:12]==
......
......@@ -128,7 +128,6 @@ module nanosoc_system #(
// System Reset Request Signals
wire SYS_SYSRESETREQ; // System Request from System Managers
wire SYS_PRMURESETREQ; // CPU Control Reset Request (PMU and Reset Unit)
// AHB Clocks and Resets
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