• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • Soft
        • C
          • Syntax-for-tools
          • Atc
          • Language
          • Representation
            • Representation-of-integer-operations
            • Atc-arrays
            • Representation-of-integers
            • Representation-of-integer-conversions
            • Pointed-integers
              • Def-pointed-integer-operations
              • Def-pointed-integer-operations-loop
              • Ushort-write
              • Ullong-write
              • Sshort-write
              • Sllong-write
              • Ulong-write
              • Uint-write
              • Uchar-write
              • Slong-write
              • Sint-write
              • Schar-write
              • Ushort-read
              • Ullong-read
              • Sshort-read
              • Sllong-read
              • Ulong-read
              • Uint-read
              • Uchar-read
                • Slong-read
                • Sint-read
                • Schar-read
              • Shallow-deep-embedding-relation
            • Transformation-tools
            • Insertion-sort
            • Pack
          • Bv
          • Imp-language
          • Event-macros
          • Java
          • Bitcoin
          • Ethereum
          • Yul
          • Zcash
          • ACL2-programming-language
          • Prime-fields
          • Json
          • Syntheto
          • File-io-light
          • Cryptography
          • Number-theory
          • Lists-light
          • Axe
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Pointed-integers

    Uchar-read

    Representation of a read of a pointed type unsigned char.

    Signature
    (uchar-read x) → x
    Arguments
    x — Guard (star (ucharp x)).
    Returns
    x — Type (ucharp x).

    Definitions and Theorems

    Function: uchar-read

    (defun uchar-read (x)
      (declare (xargs :guard (star (ucharp x))))
      (let ((__function__ 'uchar-read))
        (declare (ignorable __function__))
        (uchar-fix x)))

    Theorem: ucharp-of-uchar-read

    (defthm ucharp-of-uchar-read
      (b* ((x (uchar-read x))) (ucharp x))
      :rule-classes :rewrite)