Skip to content

Commit 712c730

Browse files
committed
Minor cleanup
1 parent 25d571e commit 712c730

5 files changed

Lines changed: 130 additions & 27 deletions

File tree

Cargo.lock

Lines changed: 0 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ members = [
55
"raven-varvara",
66
"raven-cli",
77
"raven-gui",
8-
"fuzz",
98
]
9+
exclude = ["fuzz"]
1010

1111
[workspace.dependencies]
1212
anyhow = "1.0.83"

fuzz/Cargo.lock

Lines changed: 128 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

raven-uxn/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const fn ret(flags: u8) -> bool {
2020
pub const DEV_SIZE: usize = 16;
2121

2222
/// Simple circular stack, with room for 256 items
23-
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
23+
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
2424
pub struct Stack {
2525
data: [u8; 256],
2626

raven-uxn/src/native/aarch64.s

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
ldrb \w, [x0, \x]
4747
.endm
4848

49-
// Loads the n-th byte from the return stack into w; x is a scratch register
5049
.macro rpeek, w, x, n
5150
sub \x, x3, \n
5251
and \x, \x, #0xff

0 commit comments

Comments
 (0)