rlwinmdec 1.1.0

PPC Rlwinm/Rlwnm/Rlwimi Decoder Tool
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 15.11 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 766.67 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • CelestialAmber/rlwinmdec
    2 2 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CelestialAmber

rlwinmdec Latest Version Api Rustdoc Rust Version

PowerPC Rlwinm/Rlwimi/Rlwmn Decoder Tool

Usage

use rlwinmdec::*;

fn main(){
  if let Some(result) = decode("rlwinm r3, r4, 3, 4, 5") {
	println!(result);
  }
}