Skip to content

Commit 0664627

Browse files
first commit
0 parents  commit 0664627

File tree

10 files changed

+1748
-0
lines changed

10 files changed

+1748
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
/testroms

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"rust-analyzer.cargo.features": [
3+
"show_commands",
4+
"simulate_frequency"
5+
]
6+
}

Cargo.lock

Lines changed: 98 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[package]
2+
name = "sschip8"
3+
authors = ["Squirrelcoding"]
4+
version = "0.1.0"
5+
edition = "2021"
6+
description = "Softsquirrels really cool and super-duper efficient CHIP-8 implentation for Windows."
7+
homepage = "https://softsquirrel.net/"
8+
9+
[dependencies]
10+
rand = "0.8.5"
11+
winapi = {version = "0.3.9", features = ["winuser", "utilapiset"]}
12+
13+
[features]
14+
show_commands = []
15+
simulate_frequency = []

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Softsquirrel CHIP-8 implementation
2+
Softsquirrels really cool and super-duper efficient CHIP-8 implentation for Windows.
3+
4+
## Usage
5+
1. Download.
6+
2. Run `.\sschip8 <PATH TO .ch8 FILE>` in cmd
7+
8+
### Differences between other implementations
9+
- There ~~may~~ will be a lot of bugs
10+
- Whenever a program pauses for a keypress, you have to flush it to the standard input manually by pressing `enter`
11+
12+
## Why Windows?
13+
Softsquirrel is known for developing software for usually only Linux, however this time it's on Windows. But this time it's on Windows, what gives? The reason we have chosen Windows is that: we didn't. We *would* have gone with Linux but using the Windows API (which is used for some stuff) was much easier than working with the Linux Kernel/X11.
14+
15+
# Gameplay - Space invaders
16+
<div>
17+
18+
![very cool gameplay](https://media1.giphy.com/media/jehSuym2sNrwl8TrtD/giphy.gif?cid=790b761169405332702e11af7c15b9b5234d7f57dc53d99a&rid=giphy.gif&ct=g)
19+
<p>It's not as bad as it is in the gif we promise</p>
20+
</div>

0 commit comments

Comments
 (0)