test.c: fmt& fix radix in call to morph_endianness
This commit is contained in:
parent
7eace1d85c
commit
f65dfee2b3
1 changed files with 2 additions and 7 deletions
|
@ -33,16 +33,11 @@ int main( int argc, char * argv[] ) {
|
||||||
|
|
||||||
// morph to
|
// morph to
|
||||||
// ℕ ~ <PosInt 16 LittleEndian> ~ [~<LengthPrefix x86.UInt64> <Digit 16> ~ ℤ_16 ~ x86.UInt64]
|
// ℕ ~ <PosInt 16 LittleEndian> ~ [~<LengthPrefix x86.UInt64> <Digit 16> ~ ℤ_16 ~ x86.UInt64]
|
||||||
morph_posint_radix(
|
morph_posint_radix( 10, 16, int4, int5 );
|
||||||
10,
|
|
||||||
16,
|
|
||||||
int4,
|
|
||||||
int5
|
|
||||||
);
|
|
||||||
|
|
||||||
// morph to
|
// morph to
|
||||||
// ℕ ~ <PosInt 16 BigEndian> ~ [~<LengthPrefix x86.UInt64> <Digit 16> ~ ℤ_16 ~ x86.UInt64]
|
// ℕ ~ <PosInt 16 BigEndian> ~ [~<LengthPrefix x86.UInt64> <Digit 16> ~ ℤ_16 ~ x86.UInt64]
|
||||||
morph_posint_endianness( 10, int5, int6 );
|
morph_posint_endianness( 16, int5, int6 );
|
||||||
|
|
||||||
// morph to
|
// morph to
|
||||||
// ℕ ~ <PosInt 16 BigEndian> ~ [~<LengthPrefix x86.UInt64> <Digit 16> ~ Char ~ Ascii]
|
// ℕ ~ <PosInt 16 BigEndian> ~ [~<LengthPrefix x86.UInt64> <Digit 16> ~ Char ~ Ascii]
|
||||||
|
|
Loading…
Add table
Reference in a new issue