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

View File

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

View File

@@ -1,6 +1,6 @@
# CHIP-8 Emulator
# PORCEL-8
Chip 8 emulator made with Rust.
Chip 8 emulator/interpreter.
### Status
@@ -13,7 +13,7 @@ Chip 8 emulator made with Rust.
- [ ] Display
- [ ] 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)
- [Awesome CHIP-8](https://chip-8.github.io/links/)