		SENcalc version 1.10
                ~~~~~~~~~~~~~~~~~~~~
-  FIX: crash on divide overflow
-  Clipboard copy from results fields by dblclick


SenCalc is integer arithmetic calculator with parents.

Available operations:

+  Adding
-  Substraction
*  Multiplication
/  Division
%  Modulus

~  Bit Not
&  Bit And
^  Bit Xor
|  Bit Or

!  Logical Not
&& Locical And
|| Logical Or

<< Shift Left
>> Shift Right

<  Less
>  Great
<= Less or Equal
>= Great or Equal
== Equal
!= Not Equal


Base is 10 always. You can use next prefix/suffix for change base:

The prefix:
0..  - oct (x8)		              010 (oct)  = 8 (dec)
0x.. - hex (x16)                      0x10 (hex) = 16 (dec)

The suffix:
..i  - bin (x2)                       10i (bin) = 2 (dec)
..o  - oct (x8)                       77o (oct) = 63 (dec)
..h  - hex (x16)                      0ffh (hex) = 255 (dec )

String up 4 characters avalibale too: "1234"+1="1235"

NB: number must begin with digit !  ( 0ABh is valid number, ABh is not valid )

