[doc] Update

This commit is contained in:
2024-03-02 15:41:55 +05:30
parent 2a4868c0c0
commit a47553bfa7
3 changed files with 19 additions and 12 deletions

21
Cargo.lock generated
View File

@@ -51,13 +51,10 @@ dependencies = [
] ]
[[package]] [[package]]
name = "chip8-emu" name = "byteorder"
version = "0.1.0" version = "1.5.0"
dependencies = [ source = "registry+https://github.com/rust-lang/crates.io-index"
"clap", checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
"log",
"simple_logger",
]
[[package]] [[package]]
name = "clap" name = "clap"
@@ -169,6 +166,16 @@ dependencies = [
"libc", "libc",
] ]
[[package]]
name = "porcel8"
version = "0.1.0"
dependencies = [
"byteorder",
"clap",
"log",
"simple_logger",
]
[[package]] [[package]]
name = "powerfmt" name = "powerfmt"
version = "0.2.0" version = "0.2.0"

View File

@@ -1,5 +1,5 @@
[package] [package]
name = "chip8-emu" name = "porcel8"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
@@ -9,7 +9,7 @@ edition = "2021"
clap = { version = "4.5", features = ["derive"] } clap = { version = "4.5", features = ["derive"] }
log = "0.4.20" log = "0.4.20"
simple_logger = "4.3" simple_logger = "4.3"
#byteorder = "1.5" byteorder = "1.5"
#sdl2 = "0.36.0" #sdl2 = "0.36.0"
[profile.release] [profile.release]

View File

@@ -1,6 +1,6 @@
# CHIP-8 Emulator # PORCEL-8
Chip 8 emulator made with Rust. Chip 8 emulator/interpreter.
### Status ### Status
@@ -13,7 +13,7 @@ Chip 8 emulator made with Rust.
- [ ] Display - [ ] Display
- [ ] Keyboard - [ ] Keyboard
### More information on Chip-8 ### More information on CHIP-8
- [Guide to making a CHIP-8 emulator - Tobias V. Langhoff](https://tobiasvl.github.io/blog/write-a-chip-8-emulator/#specifications) - [Guide to making a CHIP-8 emulator - Tobias V. Langhoff](https://tobiasvl.github.io/blog/write-a-chip-8-emulator/#specifications)
- [Awesome CHIP-8](https://chip-8.github.io/links/) - [Awesome CHIP-8](https://chip-8.github.io/links/)