Skip to content

Commit

Permalink
polish
Browse files Browse the repository at this point in the history
  • Loading branch information
perlindgren committed Jul 31, 2023
1 parent 5d99017 commit d4bf2d2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"repr",
"rgbaf",
"rgbf",
"riscv",
"rustfmt",
"serde",
"stim",
Expand All @@ -47,12 +48,12 @@
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.formatOnSave": true
},
}
//,
// "rust-analyzer.cargo.unsetTest": [
// "syncrim"
// ],
// "rust-analyzer.cargo.noDefaultFeatures": true,
// "rust-analyzer.cargo.features": ["gui-egui"]
// "rust-analyzer.cargo.features": ["components"] # use with nDefaultFeatures to just test
}
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Tracking changes per date:

## 230731

- RISC-V cross compilation.

## 230727

- `Signal` type now incorporates formatting. This allows the default formatting to be set on a signal on creation. The data and formatting can be read/written separately by setters/getters.
Expand Down
1 change: 1 addition & 0 deletions riscv/asm.s
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
start:
lw x0, 0(x0)
sw x1, 0(x1)
l: beq zero, zero, l

.section .data
a: .byte 0,1,2,3
Expand Down
5 changes: 0 additions & 5 deletions riscv/riscv_asm/build.rs

This file was deleted.

1 change: 1 addition & 0 deletions src/components/mem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ impl Mem {
))
}

#[allow(clippy::too_many_arguments)]
pub fn rc_new_from_bytes(
id: &str,
pos: (f32, f32),
Expand Down

0 comments on commit d4bf2d2

Please sign in to comment.