Matthias Endler
Matthias Endler
Thanks, that would be extremely nice. ✌️
No worries. You usually fork a project and create a branch on your side and then create a pull request to my repo. 😉
Looks good to me and can be merged. Good job!
With #47 being merged, I guess we can tackle this one again. Tried to rebase it, but it's currently failing. Do you think we should make the test pass or...
Isn't the CMOS variant the one that "fixes all the bugs"? 😅 At least that's my impression when I read through https://www.liquisearch.com/mos_technology_6502/bugs_and_quirks According to [this](https://github.com/mist64/perfect6502), Visual6502 emulates the original NMOS...
Agree to everything you said. Let's see if we can get the fuzzing set up. Happy to accept a PR for disabling decimal mode.
Thanks for looking into that. Good work so far.
We could add it there, yes. I was thinking of a separate trait o stay platform-agnostic and separate concerns, but that would be overkill. ```rust pub trait InterruptHandler { fn...
Currently we get until here: ``` (DEX, UseImplied) CPU { registers: Registers { accumulator: 0, index_x: 118, index_y: 129, stack_pointer: StackPointer(255), program_counter: 1202, status: Status(PS_UNUSED | PS_DISABLE_INTERRUPTS) } (DEX, UseImplied)...
Yeah, that sounds quite reasonable. I have two minor concerns: 1. The trait is getting quite big. I tend to lean towards smaller traits to allow for composability. 2. Are...