Giter Club home page Giter Club logo

mos6502-delphi's Introduction

MOS6502 Emulator in Delphi

This is the Delphi / Pascal port of the C++ implementation for the MOS Technology 6502 CPU by Gianluca Ghettini. The code is written to be more readable than fast, however some minor tricks have been introduced to greatly reduce the overall execution time.

Main features:

  • 100% coverage of legal opcodes
  • decimal mode implemented
  • read/write bus callback
  • jump table opcode selection

mos6502-delphi

The port was written with minor changes to the original file: the run(N) function was replaced by a single Step() function - if you need to run more than one cycle, just put that function inside a loop.

6502 functional test

The 6502 functional test (version 16-aug-2013) by Klaus Dormann is included.

C64 emulator

A very basic C64 emulator is included. You need to download the BASIC ROM basic.901226-01.bin and the Kernal ROM kernal.901227-03.bin and put both files inside the ROMs folder. Install the commodore CBM.ttf font found in the VICE package.

The C64 Emulator uses a symbolic keyboard translation thus any keyboard layout should work.

This C64 emulator is just a a very basic 6502/6510 emulation example and is not feature complete. Please take a look at VICE - Versatile Commodore Emulator instead.

VIC-20 emulator

Based on the C64 emulator, a VIC-20 emulator is now included. You need to download the BASIC ROM basic.901486-01.bin and the Kernal ROM kernal.901486-07.bin and put both files inside the ROMs folder. Changes compared to the C64 source are Addr and Keyboard matrix.

mos6502-delphi's People

Contributors

dennis1000 avatar stevenew avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

mos6502-delphi's Issues

load font CBM on runtime

you can load the font on runtime:

at end of FormC64.pas:

var
  fontname: string;

initialization
  fontname := '..\ROMs\CBM.ttf';

  AddFontResource(PChar(fontname));
  SendMessage(HWND_BROADCAST, WM_FONTCHANGE, 0, 0);

finalization
  RemoveFontResource(PChar(fontname));
  SendMessage(HWND_BROADCAST, WM_FONTCHANGE, 0, 0);
end.

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.