⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 structidx.c

📁 Small Device C Compiler 面向Inter8051
💻 C
字号:
/* Code to generate code to see how structure indexs are evaluated.   Originally part of gbdk/examples/gb/paint.c */#include <testfwk.h>typedef unsigned char UBYTE;typedef struct cursor_info_{  UBYTE data_idx;  UBYTE w, h;  UBYTE hot_x, hot_y;} cursor_info;const cursor_info cursors[] ={  { 0, 1, 1, 0, 0 },  { 1, 2, 2, 0, 15 },  { 5, 2, 2, 0, 15 },  { 9, 2, 2, 2, 15 },  { 13, 2, 2, 0, 15 },  { 17, 2, 2, 5, 10 }};UBYTE current_cursor;UBYTEgetWidth(void){  return cursors[current_cursor].w;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -