From 490dddf636bc50945ee6e6858f7c1942faa3aaf5 Mon Sep 17 00:00:00 2001 From: Pepijn de Vos Date: Sun, 5 Jun 2022 16:59:06 +0200 Subject: WIP shadowram --- gowin/arch.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gowin/arch.h') diff --git a/gowin/arch.h b/gowin/arch.h index 14181d79..80f887bb 100644 --- a/gowin/arch.h +++ b/gowin/arch.h @@ -344,6 +344,7 @@ struct Arch : BaseArch DelayQuad getWireTypeDelay(IdString wire); void read_cst(std::istream &in); void addMuxBels(const DatabasePOD *db, int row, int col); + void addShadowRamBels(const DatabasePOD *db, int row, int col); // --------------------------------------------------------------- // Common Arch API. Every arch must provide the following methods. @@ -485,6 +486,7 @@ enum { mux_0_z = 10, // start Z for the MUX2LUT5 bels iologic_0_z = 20, // start Z for the IOLOGIC bels + lutram_0_z = 30, // start Z for the IOLOGIC bels vcc_0_z = 277, // virtual VCC bel Z gnd_0_z = 278, // virtual VSS bel Z osc_z = 280 // Z for the oscillator bels -- cgit v1.2.3 From de1bee9352c9f760cb21a35912c48ed2f830c023 Mon Sep 17 00:00:00 2001 From: Pepijn de Vos Date: Mon, 6 Jun 2022 14:35:33 +0200 Subject: lutram actually PnRs --- gowin/arch.h | 1 - 1 file changed, 1 deletion(-) (limited to 'gowin/arch.h') diff --git a/gowin/arch.h b/gowin/arch.h index 80f887bb..c13cdf09 100644 --- a/gowin/arch.h +++ b/gowin/arch.h @@ -344,7 +344,6 @@ struct Arch : BaseArch DelayQuad getWireTypeDelay(IdString wire); void read_cst(std::istream &in); void addMuxBels(const DatabasePOD *db, int row, int col); - void addShadowRamBels(const DatabasePOD *db, int row, int col); // --------------------------------------------------------------- // Common Arch API. Every arch must provide the following methods. -- cgit v1.2.3