[package]
edition = "2021"
name = "m68000"
version = "0.2.3"
authors = ["Stovent <23307724+Stovent@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Motorola 68000 interpreter, disassembler and assembler (code emitter)"
readme = "README.md"
keywords = [
"motorola",
"68000",
"m68k",
"interpreter",
"emulator",
]
categories = [
"compilers",
"emulators",
]
license = "MPL-2.0"
repository = "https://github.com/Stovent/m68000"
[features]
default = []
ffi = []
[lib]
name = "m68000"
crate-type = [
"lib",
"staticlib",
]
path = "src/lib.rs"
[[bin]]
name = "decoder"
path = "src/bin/decoder.rs"
[[bin]]
name = "disassemble"
path = "src/bin/disassemble.rs"
[[bin]]
name = "scc68070"
path = "src/bin/scc68070.rs"
[[test]]
name = "assembler"
path = "tests/assembler.rs"
[[test]]
name = "memory_access"
path = "tests/memory_access.rs"
[[test]]
name = "operators"
path = "tests/operators.rs"
[[test]]
name = "status_register"
path = "tests/status_register.rs"