Skip to content
/ nemu Public
forked from NJU-ProjectN/nemu

NJU EMUlator, a full system x86/mips32/riscv32/riscv64 emulator for teaching

License

Notifications You must be signed in to change notification settings

nanjo712/nemu

This branch is 13 commits behind NJU-ProjectN/nemu:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1a493f9 · Jul 15, 2024
Feb 27, 2024
Mar 6, 2024
Dec 19, 2022
Jul 1, 2024
Jul 15, 2024
Jul 15, 2024
Dec 6, 2021
Jul 2, 2023
Jun 25, 2022
Dec 20, 2023
Aug 17, 2021

Repository files navigation

NEMU

NEMU(NJU Emulator) is a simple but complete full-system emulator designed for teaching purpose. Currently it supports x86, mips32, riscv32 and riscv64. To build programs run above NEMU, refer to the AM project.

The main features of NEMU include

  • a small monitor with a simple debugger
    • single step
    • register/memory examination
    • expression evaluation without the support of symbols
    • watch point
    • differential testing with reference design (e.g. QEMU)
    • snapshot
  • CPU core with support of most common used instructions
    • x86
      • real mode is not supported
      • x87 floating point instructions are not supported
    • mips32
      • CP1 floating point instructions are not supported
    • riscv32
      • only RV32IM
    • riscv64
      • only RV64IM
  • memory
  • paging
    • TLB is optional (but necessary for mips32)
    • protection is not supported
  • interrupt and exception
    • protection is not supported
  • 5 devices
    • serial, timer, keyboard, VGA, audio
    • most of them are simplified and unprogrammable
  • 2 types of I/O
    • port-mapped I/O and memory-mapped I/O

About

NJU EMUlator, a full system x86/mips32/riscv32/riscv64 emulator for teaching

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 90.0%
  • Makefile 4.0%
  • Yacc 3.1%
  • Lex 1.9%
  • Other 1.0%