Corrected the primary issue with simulation, which was the failure
to change the "vdd" connection of vddio to "vdd3v3", leaving it as
an isolated net.
diff --git a/verilog/rtl/chip_io.v b/verilog/rtl/chip_io.v
index bd359b9..82df32d 100644
--- a/verilog/rtl/chip_io.v
+++ b/verilog/rtl/chip_io.v
@@ -4,12 +4,12 @@
inout vdd1v8,
inout vss,
inout gpio,
- inout clock,
- inout resetb,
+ input clock,
+ input resetb,
output flash_csb,
output flash_clk,
- output flash_io0,
- output flash_io1,
+ inout flash_io0,
+ inout flash_io1,
// Chip Core Interface
output porb_h,
output clock_core,