1
0
mirror of https://github.com/mre/mos6502.git synced 2025-02-20 09:29:02 +00:00

Run 'cargo new 6502emu --bin'

This commit is contained in:
Andrew Keeton 2014-09-26 02:51:01 -04:00
parent 339350c34a
commit e6623c443c
4 changed files with 13 additions and 0 deletions

1
6502emu/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

4
6502emu/Cargo.lock generated Normal file
View File

@ -0,0 +1,4 @@
[root]
name = "6502emu"
version = "0.0.1"

5
6502emu/Cargo.toml Normal file
View File

@ -0,0 +1,5 @@
[package]
name = "6502emu"
version = "0.0.1"
authors = ["Andrew Keeton <andrewrkeeton@gmail.com>"]

3
6502emu/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!")
}