diff options
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | LICENSE | 12 | ||||
-rw-r--r-- | src/lib.rs | 7 |
4 files changed, 23 insertions, 2 deletions
@@ -1,3 +1,7 @@ +# 1.0.1 + +* tweaked doc formatting, added explicit license file (0bsd) + # 1.0.0 * first release, decoder exists @@ -1,7 +1,7 @@ [package] name = "yaxpeax-lc87" -version = "1.0.0" +version = "1.0.1" authors = [ "iximeow <me@iximeow.net>" ] license = "0BSD" repository = "http://git.iximeow.net/yaxpeax-lc87/" @@ -0,0 +1,12 @@ +Copyright (c) 2020 iximeow + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. @@ -6,7 +6,12 @@ //! named `LC87*`, are all 8-bit controllers, and range between 10-pin 8kb-of-flash and 100-pin //! 256kb-of-flash sizes. //! -//! in theory there exists an `LC87 Series Users's Manual` but it appears to have never existed online in original Japanese, or English translation. (the existence of an English translation is suspected but unconfirmed). by coincidence, LC87 instructions are described in the public `LC872H00` datasheet, describing specifically `LC872H00` parts. because the instruction set is shared across the LC87 family of microcontrollers, the instruction set listing in this manual describes the instruction set of the rest of the family. +//! in theory there exists an `LC87 Series Users's Manual` but it appears to have never existed +//! online in original Japanese, or English translation. (the existence of an English translation +//! is suspected but unconfirmed). by coincidence, LC87 instructions are described in the public +//! `LC872H00` datasheet, describing specifically `LC872H00` parts. because the instruction set is +//! shared across the LC87 family of microcontrollers, the instruction set listing in this manual +//! describes the instruction set of the rest of the family. //! //! datasheet: [`ANDLC872H00-D.PDF`](https://www.onsemi.com/pub/Collateral/ANDLC872H00-D.PDF). //! `sha256: 9cefe73a252468bbbfb81a28e59cb9444c4c49586a616c873958b39ad4fa7b35` |