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