Skip to content

Commit

Permalink
bump database version to 5
Browse files Browse the repository at this point in the history
  • Loading branch information
mmicko committed Nov 21, 2024
1 parent ffb0711 commit 6a6f7f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion himbaechel/arch.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

NEXTPNR_NAMESPACE_BEGIN

static constexpr int database_version = 4;
static constexpr int database_version = 5;

static const ChipInfoPOD *get_chip_info(const RelPtr<ChipInfoPOD> *ptr) { return ptr->get(); }

Expand Down
2 changes: 1 addition & 1 deletion himbaechel/himbaechel_dbgen/chip.py
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ def serialise(self, bba: BBAWriter):

bba.label("chip_info")
bba.u32(0x00ca7ca7) # magic
bba.u32(4) # version
bba.u32(5) # version
bba.u32(self.width)
bba.u32(self.height)

Expand Down

0 comments on commit 6a6f7f5

Please sign in to comment.