switcher VS ghidra-tlcs900h

Compare switcher vs ghidra-tlcs900h and see what are their differences.

switcher

Gnome Shell extension to switch windows quickly by typing (by nevesnunes)

ghidra-tlcs900h

Ghidra processor module for Toshiba TLCS-900/H (by nevesnunes)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
switcher ghidra-tlcs900h
1 1
0 9
- -
10.0 7.3
over 7 years ago 4 months ago
JavaScript Java
GNU General Public License v3.0 only -
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.

switcher

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

ghidra-tlcs900h

Posts with mentions or reviews of ghidra-tlcs900h. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-09.
  • Show HN: Ghidra Plays Mario
    10 projects | news.ycombinator.com | 9 Sep 2023
    I've been exploring new ways of testing Ghidra processor modules. In this repo, I was able to emulate NES ROMs in Ghidra to test its 6502 specification, which resulted in finding and fixing some bugs.

    Context: Ghidra is used for reverse engineering binary executables, complementing the usual disassembly view with function decompilation. Each supported architecture has a SLEIGH specification, which provides semantics for parsing and emulating instructions, not unlike the dispatch handlers you would find in interpreters written for console emulators.

    Emulator devs have long had extensive test ROMs for popular consoles, but Ghidra only provides CPU emulation, so it can't run them without additional setup. What I did here is bridge the gap: by modifying a console emulator to instead delegate CPU execution to Ghidra, we can now use these same ROMs to validate Ghidra processor modules.

    Previously [1], I went with a trace log diffing approach, where any hardware specific behaviour that affected CPU execution was also encoded in trace logs. However, it required writing hardware specific logic, and is still not complete. With the delegation approach, most of this effort is avoided, since it's easier to hook and delegate memory accesses.

    I plan on continuing research in this space and generalizing my approaches, since it shows potencial for complementing existing test coverage provided by pcodetest. If a simple architecture like 6502 had a few bugs, who knows how many are in more complex architectures! I wasn't able to find similar attempts (outside of diffing and coverage analysis from trace logs), please let me know if I missed something, and any suggestions for improvements.

    [1]: https://github.com/nevesnunes/ghidra-tlcs900h#emulation

What are some alternatives?

When comparing switcher and ghidra-tlcs900h you can also consider the following projects:

retro - Retro Games in Gym

ghidra - Ghidra is a software reverse engineering (SRE) framework

MO-Gymnasium - Multi-objective Gymnasium environments for reinforcement learning

ghidra-plays-mario - Playing NES ROMs with Ghidra's PCode Emulator

Muzero-unplugged - Pytorch Implementation of MuZero Unplugged for gym environment. This algorithm is capable of supporting a wide range of action and observation spaces, including both discrete and continuous variations.

Gymnasium - An API standard for single-agent reinforcement learning environments, with popular reference environments and related utilities (formerly Gym)

6502_65C02_functional_tests - Tests for all valid opcodes of the 6502 and 65C02 processor