raw
ffa_ch1_genesis.kv      1 ------------------------------------------------------------------------------
ffa_ch1_genesis.kv 2 ------------------------------------------------------------------------------
ffa_ch1_genesis.kv 3 -- This file is part of 'Finite Field Arithmetic', aka 'FFA'. --
ffa_ch1_genesis.kv 4 -- --
ffa_ch1_genesis.kv 5 -- (C) 2017 Stanislav Datskovskiy ( www.loper-os.org ) --
ffa_ch1_genesis.kv 6 -- http://wot.deedbot.org/17215D118B7239507FAFED98B98228A001ABFFC7.html --
ffa_ch1_genesis.kv 7 -- --
ffa_ch1_genesis.kv 8 -- You do not have, nor can you ever acquire the right to use, copy or --
ffa_ch1_genesis.kv 9 -- distribute this software ; Should you use this software for any purpose, --
ffa_ch1_genesis.kv 10 -- or copy and distribute it to anyone or in any manner, you are breaking --
ffa_ch1_genesis.kv 11 -- the laws of whatever soi-disant jurisdiction, and you promise to --
ffa_ch1_genesis.kv 12 -- continue doing so for the indefinite future. In any case, please --
ffa_ch1_genesis.kv 13 -- always : read and understand any software ; verify any PGP signatures --
ffa_ch1_genesis.kv 14 -- that you use - for any purpose. --
ffa_ch1_genesis.kv 15 -- --
ffa_ch1_genesis.kv 16 -- See also http://trilema.com/2015/a-new-software-licensing-paradigm . --
ffa_ch1_genesis.kv 17 ------------------------------------------------------------------------------
ffa_ch1_genesis.kv 18 ------------------------------------------------------------------------------
ffa_ch1_genesis.kv 19
ffa_ch1_genesis.kv 20 with Words; use Words;
ffa_ch1_genesis.kv 21 with FZ_Type; use FZ_Type;
ffa_ch1_genesis.kv 22
ffa_ch1_genesis.kv 23 package FFA_IO is
ffa_ch1_genesis.kv 24
ffa_ch1_genesis.kv 25 -- Character representation of a Word
ffa_ch1_genesis.kv 26 type WChars is array(1 .. 2 * Byteness) of Character;
ffa_ch1_genesis.kv 27
ffa_ch1_genesis.kv 28 -- Obtain the WChars corresponding to the given Word
ffa_ch1_genesis.kv 29 function W_To_WChars(N : Word) return WChars;
ffa_ch1_genesis.kv 30
ffa_ch1_genesis.kv 31 -- Display a hex representation of W to stdout
ffa_ch1_genesis.kv 32 procedure Dump(W : in Word);
ffa_ch1_genesis.kv 33
ffa_ch1_genesis.kv 34 -- Display a hex representation of N to stdout
ffa_ch1_genesis.kv 35 procedure Dump(N : in FZ);
ffa_ch1_genesis.kv 36
ffa_ch1_genesis.kv 37 end FFA_IO;