Welcome to the Creatures Wiki! Log in and join the community.

DIVV

From Creatures Wiki
Revision as of 15:20, 5 February 2006 by Alexwatson (talk) (+cat)
Jump to navigation Jump to search

DIVV is a CAOS command for arithmetic.

Usage

Syntax: DIVV var (variable) x (int or float)

Divides var by x, so var = var / x.

If both var and x are integers, integer division is used. This takes the floor, so 17 / 9 = 1. If either argument is a float, floating point division is used, and var will be a float after the operation. If you need to perform floating point division with two integer variables, consider ITOF.

Example

This is equivalent to MODV va00 va01, where va00 and va01 are both integer.

SETV va02 va00
DIVV va00 va01
MULV va00 va01
SUBV va02 va00
SETV va00 va02

See also