PicPuter

  Home
  Products
  Contact

Using

  Download
  Manual
  Examples
  UserGroup

Development

  Revision
  Future
  Bugs

Other

  DLHexRec
  Modd Audio
  Veracity
  DSP
  Blinky

Miscellaneous

  Links
  Search
  Obsolete
  Site Design
  Disclaimer

 
.
PicPuter 2.0 : Chapter 4 : Math Operations

  • Boolean
  • Arithmetic
  • Logic

    4. Math Operations


    4.01= =  Boolean Equals

    Tests whether the two values are equal.

    Results is 1 if test is true, 0 if test is false.

    70 a=0
    72 do
    74 PRINT a
    76 a=a+1
    78 while a == 1

    Output:
    0 1
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.02! =  Boolean Not Equals

    Tests whether the two values are not equal.

    Results in 1 if test is true, 0 if test is false.

    1 a=0
    5 do
    10 PRINT a
    15 a=a+1
    20 while a != 3


    Output:
    0 1 2
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.03>  Boolean Greater Than

    Tests whether the first value is greater than the second value.

    Results in 1 if test is true, 0 if test is false.

    1 a=0
    5 do
    10 PRINT a
    15 a=a+1
    20 while a > 3


    Output:
    0
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.04<  Boolean Less Than

    Tests whether the first value is less than the second value.

    Results in 1 if test is true, 0 if test is false.

    1 a=0
    5 do
    10 PRINT a
    15 a=a+1
    20 while a < 3


    Output:
    0 1 2
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.05>=  Boolean Greater Than or Equal To

    Tests whether the first value is greater than or equal to the second value.

    Results in 1 if test is true, 0 if test is false.

    PRINT 5 >= 3

    Output:
    1
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.06<=  Boolean Less Than or Equal To

    Tests whether the first value is less than or equal to the second value.

    Results in 1 if test is true, 0 if test is false.

    1 a=0
    5 do
    10 PRINT a
    15 a=a+1
    20 while a <= 3


    Output:
    0 1 2 3
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.07+ Adds two numbers

    Adds two numbers.

    PRINT 5 + 3

    Output:
    8
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.08- Subtracts two numbers

    Subtracts two numbers.

    PRINT 5 - 3

    Output:
    2
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.09* [reg|var|const] * [reg|var|const]

    Multiplies two numbers.

    PRINT 5 * 3

    Output:
    15
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.10.* [reg|var|const] .* [reg|var|const]

    Multiplies two numbers, shifts the result 8 bits right.

    PRINT $500 .* 3

    Output:
    15
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.11/ [reg|var|const]/ [reg|var|const]

    Divides two numbers.

    Note: there seems to be a __BUG__ that causes incorect results if your divisor is greater than 156 or so.
    PRINT 5 / 3

    Output:
    1
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.12% [reg|var|const] % [reg|var|const]

    Gives you the remainder of a divide.

    PRINT 5 % 3

    Output:
    2
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.13MIN [reg|var|const] MIN [reg|var|const]

    Returns the smaller of the two numbers.

    PRINT 5 MIN 3

    Output:
    3
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.14MAX [reg|var|const] MAX [reg|var|const]

    Returns the larger of the two numbers.

    PRINT 5 MAX 3

    Output:
    5
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.15>> [reg|var|const] >>[reg|var|const]

    Arithmetic Rotate Right.

    PRINT 8 >> 2 

    Output:
    2
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.15<< [reg|var|const]<< [reg|var|const]

    Arithmetic Rotate Left.

    PRINT 2 << 2 

    Output:
    8
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.17AND  &  Bitwise [reg|var|const] AND [reg|var|const]

    Performs a bitwise 'AND' of the two operands.

    PRINT 5 AND 3

    Output:
    1
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.18OR  Bitwise [reg|var|const] OR [reg|var|const]

    Performs a bitwise 'OR' of the two operands.

    PRINT 5 OR 3

    Output:
    7
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.19XOR  ^  Bitwise [reg|var|const] XOR [reg|var|const]

    Performs a bitwise 'XOR' of the two operands.

    PRINT 5 XOR 3

    Output:
    6
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.20NAND  Bitwise ~[reg|var|const] AND ~[reg|var|const]

    Performs a bitwise 'NAND' of the two operands.

    PRINT$ 5 NAND 3

    Output:
    $FFFE
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

    4.21NOR  Bitwise ~[[reg|var|const] OR [reg|var|const]]

    Performs a bitwise 'NOR' of the two operands.

    PRINT$ 5 NOR 3

    Output:
    $FFF8
    

     
    [ index | memory | math | statements | variables | registers | assembler ]

  • This webpage is © Copyright 2001,2002,2003 by Todd Modjeski - All Rights Reserved - built Mon Jan 26 22:48:29 2004