We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example:
#bankdef mybank { #addr 0x0 #size 0x6 #outp 0 #fill 05 }
And it fills the bank with 05 value
#ruledef { nop => 0x00 hlt => 0xff }
nop hlt
Output: 00ff05050505
The text was updated successfully, but these errors were encountered:
Yes! That was the original idea.
Sorry, something went wrong.
So it's never going to work like that? Because in my system the nop operation is not 00 so the fill function is a bit useless 😅
It should work! I mean I had this idea for a while, it's just unimplemented as of yet.
No branches or pull requests
#bankdef mybank
{
#addr 0x0
#size 0x6
#outp 0
#fill 05
}
#ruledef
{
nop => 0x00
hlt => 0xff
}
nop
hlt
The text was updated successfully, but these errors were encountered: