Git Product home page Git Product logo

6502's Issues

File Load exit error codes are wrong

Indirect addressing mode needs to return entire page when lo(0xFF)

Following the 6502 spec, there is a bug in architecture when indirect addressing mode is used.
Not sure if this thing affects all the indirect addressing like indirect, x and indirect, y but probably yes.
We need to check if the lo(ADDRESS) is 0xFF and, then, consider a full page return, so:

LDX #$02
STX $3000

LDX #$04
STX $3100

LDX #$03
STX $30FF

JMP ($30FF)

the jump will consider the hi(0x3000) + lo(0x30FF) = 0x0203

NB: WE CAN'T USE EASY6502 TO VALIDATE THIS BECAUSE THEY ARE NOT RESPECTING THIS BEHAVIOUR AS WE CAN SEE IN THE PICTURE:
image

Consider use Valgrind on build checks

Valgrind is a too that provides a number of debugging and profiling tools that help you make your programs faster and more correct. The most popular of these tools is called Memcheck. It can detect many memory-related errors like memory leaks that are common in C and C++ programs and that can lead to crashes and unpredictable behaviour.

So, would be nice to have it running on every build of this, right?

How to use it
https://www.cprogramming.com/debugging/valgrind.html

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.