Giter VIP home page Giter VIP logo

Comments (3)

i3abghany avatar i3abghany commented on August 29, 2024

p.s.: I know the two halves are taken from the memory in a different way in the original source code but I still think that the pagination would cause a problem.

from olcnes.

miniragnarok avatar miniragnarok commented on August 29, 2024

No we only check in the Y register. I can't tell you why they're different but the datasheet tells you what's expected and the address jump is only on the Y register.

from olcnes.

realXCV avatar realXCV commented on August 29, 2024

If you're calculating an address based on the zero page (like with the +X), it has to stay on the zero page (no page crossing). Same rule applies to the ZP0, ZPX and ZPY modes. But if you read an address from there (like with the +Y), that address address is no longer limited to the zero page and page crossing could happen.

Also, don't confuse (addr,X) and (addr),Y. The first one read an address from addr+x and then read or write data at that new location while the second read an adress from addr then add Y to that new address and finally read or write data at that final location. What you've created with your code is (addr),X which doesn't exist on the 6502.

from olcnes.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.