aboutsummaryrefslogtreecommitdiffstats
path: root/gowin
diff options
context:
space:
mode:
authorD. Shah <dave@ds0.me>2021-01-29 11:11:08 +0000
committerD. Shah <dave@ds0.me>2021-02-02 16:59:40 +0000
commitff92d19fed274c6469720cc726e80dc777fa767f (patch)
tree6e99ceddd946c086b727a662812c828e97b3f899 /gowin
parent90edf33c95de975b7f8204624a995c4826c52b84 (diff)
downloadnextpnr-ff92d19fed274c6469720cc726e80dc777fa767f.tar.gz
nextpnr-ff92d19fed274c6469720cc726e80dc777fa767f.tar.bz2
nextpnr-ff92d19fed274c6469720cc726e80dc777fa767f.zip
arch: Add getNameDelimiter API for string lists
Signed-off-by: D. Shah <dave@ds0.me>
Diffstat (limited to 'gowin')
-rw-r--r--gowin/arch.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gowin/arch.h b/gowin/arch.h
index f12c604e..6337255a 100644
--- a/gowin/arch.h
+++ b/gowin/arch.h
@@ -323,6 +323,7 @@ struct Arch : BaseCtx
int getGridDimY() const { return gridDimY; }
int getTileBelDimZ(int x, int y) const { return tileBelDimZ[x][y]; }
int getTilePipDimZ(int x, int y) const { return tilePipDimZ[x][y]; }
+ char getNameDelimiter() const { return '/'; }
BelId getBelByName(IdString name) const;
IdString getBelName(BelId bel) const;