GladiatorPits-MUD VS chips

Compare GladiatorPits-MUD vs chips and see what are their differences.

chips

8-bit chip and system emulators in standalone C headers (by floooh)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
GladiatorPits-MUD chips
1 8
8 906
- -
10.0 7.7
over 2 years ago 15 days ago
C C
MIT License zlib License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

GladiatorPits-MUD

Posts with mentions or reviews of GladiatorPits-MUD. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-09-10.

chips

Posts with mentions or reviews of chips. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-14.
  • Getting into way too much detail with the Z80 netlist simulation (2021)
    2 projects | news.ycombinator.com | 14 Apr 2024
    Author here, interesting to see this posted since it's more like a reference manual for Z80 instructions with 'unusual' timings. The followup blog post about the cycle-stepped Z80 emulator is probably more interesting:

    https://floooh.github.io/2021/12/17/cycle-stepped-z80.html

    One important note: at the start of the post I'm speculating about why I was seeing some minor differences to a 'real' Z80, it turned out that this speculation was wrong and instead the differences were caused by 'incomplete' netlist simulation code which worked fine for the 6502 but required some tweaks for the Z80, see the comments of this GH issue for details: https://github.com/floooh/v6502r/issues/2.

    As far as I'm aware the netlist simulation now behaves correctly like a Zilog Z80 (but note that reverse engineered Z80 clones like the East German U880 are known to have slightly different undocumented behaviour), and the Z80 emulator in https://github.com/floooh/chips is tested against the netlist simulation for correct behaviour and timing.

  • A world to win: WebAssembly for the rest of us
    4 projects | news.ycombinator.com | 17 Aug 2023
    I simply don't see that there's a big enough difference between traditional garbage collection, refcounting and manual memory management. Each of those can already be implemented in pure WASM, just more or less awkwardly.

    As for "just another ISA", there have been CPUs which had separate call- and data-stacks, with the call-stack living on the CPU and not accessible as regular data. In that sense WASM isn't much different then those esoteric CPUs.

    And even though WASM might not allow free jumps, I yet have to see a noticeable performance difference between WASM and native for this type of "worst case code":

    https://github.com/floooh/chips/blob/f5b6684ff6e899429544b21...

  • Appler: Apple ][ emulator for IBM PC, written in 8088 assembly
    5 projects | news.ycombinator.com | 8 Mar 2023
    Oh my, the 6502 emulation [1] has fewer lines of assembly code than my (code-generated) implementation has lines of C code [2] :D

    Very nice use of a macro assembler though [3], makes the code feel very high level.

    To my defense, the generated code has a lot of redundancies (such as assert(false) which were meant to catch any 'stray cycles' but which are removed in release mode.

    [1] https://github.com/zajo/appler/blob/develop/src/65C02.ASM

    [2] https://github.com/floooh/chips/blob/master/chips/m6502.h

    [3] https://github.com/zajo/appler/blob/52aaa0f768cdf303438cd2c7...

  • Ask HN: What's the best source code you've read?
    46 projects | news.ycombinator.com | 10 Sep 2022
    I don't know if it's the best code I've ever read but this emulation library [0] of 8 bits computers is pretty well written, documented and designed: https://github.com/floooh/chips.

    It's a good way to document old hardware with emulation code.

  • A new cycle-stepped Z80 emulator
    1 project | /r/C_Programming | 23 Dec 2021
  • Tiny Emulators
    1 project | news.ycombinator.com | 23 Nov 2021
    Looks like here's the source code of the emulators:

    8-bit chip and system emulators in standalone C headers - https://github.com/floooh/chips

  • Emulating a Parallel Memory chip at the circuit level:
    2 projects | /r/EmuDev | 17 Oct 2021
    There's a project on GitHub of similar nature -- it has include-able .h files emulating 8-bit computer chips on the pin level, and bus state is also held in a 64-bit value: https://github.com/floooh/chips/blob/master/chips/m6502.h
  • Yet Another Eater Sap1 Is Finished
    2 projects | /r/beneater | 28 Dec 2020
    I wrote also a library of components for some complex chips (like 6502 simulation using https://github.com/floooh/chips)

What are some alternatives?

When comparing GladiatorPits-MUD and chips you can also consider the following projects:

LevelDB - LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values.

wasm.cljc - Spec compliant WebAssembly compiler, decompiler, and generator

pcgeos - #FreeGEOS source codes. The offical home of the PC/GEOS operating system technology. For personal computing fans. For all developers and assembly lovers. For YOU!

s7-wasm - Example of using s7 Scheme with web assembly and emscripten

TypeScript - TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

makaronLab - CPU simulation experiments

RetroArch - Cross-platform, sophisticated frontend for the libretro API. Licensed GPLv3.

8086tiny - 8086tiny interpreter by Adrian Cable, taken from http://www.megalith.co.uk/8086tiny/

Wt - Wt, C++ Web Toolkit

mpv - 🎥 Command line video player

appler - Apple ][ emulator for MS-DOS, written in 8088 assembly