Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions spec/book.typ
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
#chapter("memw.typ")[MEMW]
#chapter("lt.typ")[LT]
#chapter("mul.typ")[MUL chip]
#chapter("dvrm.typ")[DVRM chip]
#chapter("load.typ")[LOAD chip]
#chapter("ecall.typ")[ECALL chips]
#chapter("bitwise.typ")[BITWISE]
]
)
Expand Down
17 changes: 17 additions & 0 deletions spec/dvrm.typ
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#import "/book.typ": book-page
#import "/src.typ": load_config, load_chip
#import "/chip.typ": (
render_chip_column_table,
total_nr_variables,
total_nr_instantiated_columns,
render_constraint_table,
render_chip_assumptions,
render_chip_padding_table,
)

#let config = load_config()
// #let chip = load_chip("src/dvrm.toml", config)

#show: book-page.with(title: "DVRM chip")

*placeholder chapter: WIP*
17 changes: 17 additions & 0 deletions spec/ecall.typ
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#import "/book.typ": book-page
#import "/src.typ": load_config, load_chip
#import "/chip.typ": (
render_chip_column_table,
total_nr_variables,
total_nr_instantiated_columns,
render_constraint_table,
render_chip_assumptions,
render_chip_padding_table,
)

#let config = load_config()

#show: book-page.with(title: "ECALL chips")

*placeholder chapter: WIP*