vhex-disassembler/include/syscalls.h

62 lines
1.6 KiB
C

#ifndef __CASIO_H__
# define __CASIO_H__
#include <types.h>
// Internal Casio datat structure
struct rect
{
int left;
int top;
int right;
int bottom;
};
//
// Casio prototypes.
//
/* GetKey() - display Casio's VRAM and wait keyboard input. */
void casio_GetKey(unsigned int *key);
/* Bdisp_AllClr_VRAM() - clear entirely the Casio's VRAM */
void casio_Bdisp_AllClr_VRAM(void);
/* Bdisp_AreaClr_VRAM() - clear only VRAM area. */
void casio_Bdisp_AreaClr_VRAM(const struct rect *buf);
/* PrintMini() - print string in Casio's VRAM (and display on screen ?) */
void casio_PrintMini(size_t x, size_t y, char const *str, int mode);
/* Bdisp_DrawLine_VRAM() - draw line in Casio's VRAM. */
void casio_Bdisp_DrawLine_VRAM(int x1, int y1, int x2, int y2);
/* RestoreDisp() - restore saved screen. */
void casio_RestoreDisp(unsigned char page);
/* SaveDisp() - save the content of the screen. */
void casio_SaveDisp(unsigned char page);
/* Malloc() - malloc syscall */
void *casio_Malloc(size_t size);
/* Free() - free syscall */
void *casio_Free(void *ptr);
// Internal casio abstraction.
static INLINE void dclear_area(int x1, int y1, int x2, int y2)
{
struct rect area = {.left = x1, .top = y1, .right = x2, .bottom = y2};
casio_Bdisp_AreaClr_VRAM(&area);
}
#define print(x, y, str) casio_PrintMini(x, y, str, 0)
#define getkey casio_GetKey
#define dline_horizontal(y, x1, x2) casio_Bdisp_DrawLine_VRAM(x1, y, x2, y)
#define dclear casio_Bdisp_AllClr_VRAM
#define save_window casio_SaveDisp
#define restore_window casio_RestoreDisp
#define malloc casio_Malloc
#define free casio_Free
#endif /*__CASIO_H__*/