fixed hbasm

soft-float
Erin 2024-04-16 15:34:12 +02:00
parent 0070016f74
commit 247b2c6614
Signed by: erin
GPG Key ID: 045A6550CF2B7686
1 changed files with 18 additions and 16 deletions

View File

@ -288,6 +288,7 @@ macro_rules! instructions {
($module:expr, $obj:expr $(,)?)
{ $($opcode:expr, $mnemonic:ident, $ops:tt, $doc:literal;)* }
) => {{
paste::paste! {
let (module, obj) = ($module, $obj);
$({
// Object is shared across all functions
@ -305,6 +306,7 @@ macro_rules! instructions {
)
);
})*
}
}};
}