mirror of
https://git.sr.ht/~asya/copycat
synced 2024-11-16 00:38:43 -06:00
AsyaTheAbove
03055b819d
This patch loads and runs the 5150 BIOS, and implements the instructions necessary to pass the 8088 processor test done by the BIOS on boot. The 5150 BIOS ROM is loaded with a TLB-like address lookup buffer that is prefilled with entries that point to BIOS ROM in the host memory. This TLB-like buffer will likely evolve to a full TLB in the far future when we implement paging. Signed-off-by: AsyaTheAbove <asya@waifu.club>
11 lines
216 B
TOML
11 lines
216 B
TOML
[package]
|
|
name = "copycat"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bitflags = "2.4.0"
|
|
hashbrown = "0.14.0"
|