abCalc/abCalcOpHex.c

31 lines
346 B
C
Raw Normal View History

2013-07-25 01:02:07 +00:00
/*
abCalcOpHex.c
By: Jeremy Rand
*/
#include <stdio.h>
#include "abCalcOpHex.h"
#include "abCalcOp.h"
#include "abCalcMode.h"
#define OP_NAME "HEX"
static void hexExecute(void);
void abCalcOpHexInit(void)
{
abCalcOpRegister(OP_NAME, hexExecute);
}
void hexExecute(void)
{
abCalcModeSetBase(abCalcModeHexBase);
}