Giter Site home page Giter Site logo

boert / z1013-mist Goto Github PK

View Code? Open in Web Editor NEW
0.0 0.0 0.0 2.23 MB

The robotron Z1013 port for the mist board.

License: GNU General Public License v3.0

VHDL 89.89% Verilog 4.82% Makefile 1.15% Stata 3.21% Tcl 0.92%
emulation fpga mist-board retrogaming robotron vhdl z1013 z80

z1013-mist's People

Contributors

boert avatar kcbert avatar

Watchers

 avatar  avatar

z1013-mist's Issues

Reset Button

This will activate the Right Button on Mist for Reset

------------------------------------
-- reset generator
--
process
begin
    wait until rising_edge( cpu_clk);

    if reset_counter > 0 then
        reset_counter   <= reset_counter - 1;
    else
        sys_reset       <= '0';
    end if;

    -- all reset sources:
    if  ( user_io_status(0)='1')--ARM Reset
  		or ( user_io_status(1)='1')--Menu Reset
  		or ( user_io_buttons(1)='1')--Right Button on Mist
        or ( pll_locked = '0') 
        or ( data_io_inst_download = '1' and unsigned( data_io_index) = 0)
    then
        reset_counter   <= 255;
        sys_reset       <= '1';
    end if;

end process;
sys_reset_n <= not sys_reset;

and add this to user_io
buttons => user_io_buttons, -- : out std_logic_vector( 1 downto 0);

Contact me here:http://www.atari-forum.com/memberlist.php?mode=viewprofile&u=25549 ich bin aus Görlitz

Some bugs in MIST core

Hi!

Very nice reimplementation!

But found some bugs:

  1. Certain games simply don't run (i.e. Ladder).
  2. In the menu the highlighted area disappears below the 'Autostart' funcion, but works (there's an invisible 'Reset' item). Someone mentioned earlier (perhaps Sorgelig) that only 7 rows fit to one page of the menu.
  3. Couldn't use any of the games with joystick (tried all the joy and kb. settings combinations, tested USB gamepads and retro DB9 devices as well).
  4. Some games use strange keysets to control the game, but knowing that the original machine had ABCDEF keyboard layout instead of the standard QWERTY, that's not a surprise.

Keep up the important work, I really like these Eastern European computers!

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.