Giter VIP home page Giter VIP logo

6502_emulator's Introduction

## Some Inforamtion
Coding Style
Register names: always UPPERCASE

The processor status register consists of 8 bits (1 byte):
0. Carry flag			:C: 9th bit of ADC (addition) result
1. Zero flag			:Z: 0 if result is not zero, 1 if result is 0
2. IRQ disable flag		:I: Set by SEI (set interrupt disable), cleared by CLI (clear interrupt flag)
3. Decimal mode flag	:D: 1 if true, 0 if false
4. Break Command flag	:B: 
5. UNUSED				:-: 
6. Overflow flag		:V: 1 if true, 0 if false
7. Negative flag		:N: 1 if result is negative, 0 if result is positive

The stack ranges from 0x1ff to 0x100.
It is "upside down" in the memory: the "bottom" (beginning) of the stack is at 0x1ff, the "top" (end) is at 0x100 + SP.

6502_emulator's People

Contributors

gergoo007 avatar

Watchers

 avatar

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.