Giter Site home page Giter Site logo

vecx-sdl2's Introduction

vecx-SDL2

Vectrex Loading Screen Star Trek

Requirements

  • sdl2
  • sdl2_image

Usage

Usage: vecx [options] [cart_file]
Options:
--help Display this help message
--bios Load bios file
--overlay Load overlay file
--fullscreen Launch in fullscreen mode

KEY ACTION
a,s,d,f buttons
arrows joystick
F1-F4 quick load
F5-F8 quick save

Authors

vecx-sdl2's People

Contributors

timu5 avatar

Stargazers

Phillip Eaton avatar Simon Rodriguez avatar Jørgen Lund avatar

Watchers

James Cloos avatar  avatar Phillip Eaton avatar

vecx-sdl2's Issues

include file syntax, and 48k or 50k cartridges

#include "emu\e6522.h"
#include "emu\e6809.h"
#include "emu\e8910.h"
#include "emu\edac.h"
#include "emu\vecx.h"

using backslash only works on windows systems, but using forward slash will work on both windows and linux systems.

Also, in vecx.c the cartridge size is limited to 32K but Vectrex cartridges can in theory support up to 50K as the address space for cartridges runs from 0000 to c7ff, and some cartridges are beginning to use that extended space.

121c119
< else if (address < 0xc800) /* WAS 8000 - updated for 50K carts */

  else if (address < 0x8000)

150c148
< else if (address < 0xc800) /* was 8000 - updated for 50k carts */

  else if (address < 0x8000)

the declaration of the cartridge space should also be sized appropriately. Although you are more likely to find cartridges supporting up to c000 (48k) than c800 (50k). This is regular non-bank-switched memory. Bank-switch support is a separate issue.

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.