No description
Find a file
Zihao Yu de78d6ca0a x86-qemu,boot: fix strict aliasing bug by union
* In gcc 12, by the strict-aliasing rule, gcc will consider elf32 and
  buf during calling copy_from_disk() point to different memory area.
  This will let gcc move the checking of EM_X86_64 ahead of
  copy_from_disk(), causing incorrectly parsing the x86_64 ELF header as
  x86_32.
2024-06-02 12:30:23 +08:00
am x86-qemu,boot: fix strict aliasing bug by union 2024-06-02 12:30:23 +08:00
klib klib,int64: remove unused code 2024-01-17 13:46:31 +08:00
scripts {nemu,npc}: inject mainargs to the bin file 2024-05-12 21:34:43 +08:00
tools {nemu,npc}: inject mainargs to the bin file 2024-05-12 21:34:43 +08:00
.gitignore add riscv64-mycpu 2021-07-13 16:00:11 +08:00
LICENSE 2021 pre-release 2021-07-13 15:53:57 +08:00
Makefile Makefile: refine image dependency 2024-05-12 21:25:48 +08:00
README 2020 release 2020-09-04 00:13:55 +08:00

AbstractMachine is a minimal, modularized, and machine-independent 
abstraction layer of the computer hardware:

* physical memory and direct execution (The "Turing Machine");
* basic model for input and output devices (I/O Extension);
* interrupt/exception and processor context management (Context Extension);
* virtual memory and protection (Virtual Memory Extension);
* multiprocessing (Multiprocessing Extension).

CONTACTS

Bug reports and suggestions go to Yanyan Jiang (jyy@nju.edu.cn) and Zihao 
Yu (yuzihao@ict.ac.cn).