diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2023-03-10 15:29:59 +0100 |
---|---|---|
committer | myrtle <gatecat@ds0.me> | 2023-03-16 13:37:23 +0100 |
commit | 6eb5f2a77e23a89d0876dd041ebe5871ff6b65ce (patch) | |
tree | 5ee6a66944735872dea3569158aae12e7133cb00 /machxo2/arch.h | |
parent | 1f115ddd320dc5e2f9c69e32ee2e40b758285f6e (diff) | |
download | nextpnr-6eb5f2a77e23a89d0876dd041ebe5871ff6b65ce.tar.gz nextpnr-6eb5f2a77e23a89d0876dd041ebe5871ff6b65ce.tar.bz2 nextpnr-6eb5f2a77e23a89d0876dd041ebe5871ff6b65ce.zip |
Enable wires and add dummy wire type for now
Diffstat (limited to 'machxo2/arch.h')
-rw-r--r-- | machxo2/arch.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/machxo2/arch.h b/machxo2/arch.h index 4e0ed2fd..3eaa0684 100644 --- a/machxo2/arch.h +++ b/machxo2/arch.h @@ -74,7 +74,8 @@ NPNR_PACKED_STRUCT(struct PipInfoPOD { NPNR_PACKED_STRUCT(struct WireInfoPOD { RelPtr<char> name; - int32_t tile_wire; + int16_t type; + int16_t tile_wire; int32_t num_uphill; int32_t num_downhill; RelPtr<PipLocatorPOD> pips_uphill; |