Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewb1999 committed Nov 16, 2024
1 parent bd9763b commit 970e240
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions calyx-backend/src/verilog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -806,8 +806,10 @@ fn memory_read_write(comp: &ir::Component) -> Vec<v::Stmt> {
}

// Import futil helper library.
let stringify_decl = v::Stmt::new_rawstr("`define STRINGIFY(x) `\"x`\"".to_string());
let data_decl = v::Stmt::new_rawstr("string data = `STRINGIFY(`DATA);".to_string());
let stringify_decl =
v::Stmt::new_rawstr("`define STRINGIFY(x) `\"x`\"".to_string());
let data_decl =
v::Stmt::new_rawstr("string data = `STRINGIFY(`DATA);".to_string());
let code_decl = v::Stmt::new_rawstr("int CODE;".to_string());

let plus_args = v::Sequential::new_blk_assign(
Expand Down

0 comments on commit 970e240

Please sign in to comment.