mirror of
https://github.com/jeremysrand/abCalc.git
synced 2025-02-19 18:30:24 +00:00
31 lines
342 B
C
31 lines
342 B
C
/*
|
|
abCOpHex.c
|
|
By: Jeremy Rand
|
|
*/
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "abCMode.h"
|
|
|
|
#include "ops/abCOp.h"
|
|
#include "ops/abCOpHex.h"
|
|
|
|
|
|
#define OP_NAME "HEX"
|
|
|
|
|
|
static void hexExecute(void);
|
|
|
|
|
|
void abCalcOpHexInit(void)
|
|
{
|
|
abCalcOpRegister(OP_NAME, hexExecute);
|
|
}
|
|
|
|
|
|
void hexExecute(void)
|
|
{
|
|
abCalcModeSetBase(abCalcModeHexBase);
|
|
}
|