Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 647 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 647 Bytes

x86emu

x86 emulator in Rust. This is a porting from the implementation written by C in "自作エミュレータで学ぶx86アーキテクチャ". You can see the original code in the support page.

It can now execute a binary file to calculate fibonacci numbers. There is a binary file for calculating a fibonacci number 10 (=55) in the test directory. The progress corresponds to tolset_p86/emu3.10 which is the part of the original source code.

Usage

$ cargo run test/mov_r32_imm32

References