-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
Implement HM 6 #5
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think there's a couple of iffy API/storage decisions but otherwise this looks good.
When you've thought about my comments and made a decision, let me know, and I'll break out my test suite to see how this fares against the test cases I use.
VirtualMachine::new(&bf_program, args.cells, args.extensible); | ||
vm.interpreter(); | ||
let _ = vm.interpret(&mut stdin(), &mut stderr()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI, I test my program using this website: https://minond.xyz/brainfuck/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be fine now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything looks nice except that the extensible tape doesn't work which means if I try some of my tests with a 1 cell extensible tape it fails.
No description provided.