#!/bin/sh
#
# TODO: check Fx - not yet supported
#

if [ -z "$2" ]; then
	echo "Usage: add [value] [value]"
	exit 1
fi
rax $((`rax $1` + `rax $2`))
