项目作者: GNUSim8085

项目描述 :
A graphical simulator, assembler and debugger for the Intel 8085 microprocessor
高级语言: C
项目地址: git://github.com/GNUSim8085/GNUSim8085.git
创建时间: 2010-12-22T18:22:20Z
项目社区:https://github.com/GNUSim8085/GNUSim8085

开源协议:GNU General Public License v2.0

下载


GNUSim8085 (https://www.gnusim8085.org/)

GNUSim8085 is a graphical cross platform simulator plus assembler with
debugger for the Intel 8085 microprocessor.

You have to enter assembly code in order to use the simulator. The
assembly syntax is not too hard to learn. For more information see
“asm-guide.txt” in the doc/ directory.

Variable declarations are supported in assembler. You have
a seperate Data view widget to show variable values during debugging.
And did I mention that? Yes, you can also debug your code with the
builtin debugger! For detailed stuff, you can generate program
listing which contains line by line of code with address and operand
information.

Contents of memory, IO ports can be modified during program execution.
Modification of registers, flag are being planned, but they are not
necessary always.

A lot of examples can be found in the docs directory! Try them.

Also don’t forget to take a tutorial, when you will be asked during
the program startup.

Dependencies

Build dependencies (Mandatory)

  • GTK3 (>= 3.10.0) development package
  • GtkSourceView3 (>= 3.10.0) development package

Build dependencies (Optional)

  • gettext (>= 0.18)
  • markdown (discount or similar package that provides markdown binary)

Install from source using meson build system (default)

To install from source, run the following commands

  1. $ meson builddir
  2. $ cd builddir
  3. $ ninja
  4. $ sudo ninja install

Install from source using autotools build system

To install from source, run the following commands

  1. $ ./autogen.sh
  2. $ ./configure
  3. $ make
  4. $ sudo make install

Or, see the INSTALL file.