📄 asm.inl
字号:
/* ______ ___ ___
* /\ _ \ /\_ \ /\_ \
* \ \ \L\ \\//\ \ \//\ \ __ __ _ __ ___
* \ \ __ \ \ \ \ \ \ \ /'__`\ /'_ `\/\`'__\/ __`\
* \ \ \/\ \ \_\ \_ \_\ \_/\ __//\ \L\ \ \ \//\ \L\ \
* \ \_\ \_\/\____\/\____\ \____\ \____ \ \_\\ \____/
* \/_/\/_/\/____/\/____/\/____/\/___L\ \/_/ \/___/
* /\____/
* \_/__/
*
* Imports asm definitions of various inline functions.
*
* By Shawn Hargreaves.
*
* See readme.txt for copyright information.
*/
#ifdef __cplusplus
extern "C" {
#endif
#ifndef ALLEGRO_NO_ASM
#if (defined ALLEGRO_GCC) && (defined ALLEGRO_I386)
/* use i386 asm, GCC syntax */
#include "allegro/platform/al386gcc.h"
#elif (defined ALLEGRO_MSVC) && (defined ALLEGRO_I386)
/* use i386 asm, MSVC syntax */
#include "allegro/platform/al386vc.h"
#elif (defined ALLEGRO_WATCOM) && (defined ALLEGRO_I386)
/* use i386 asm, Watcom syntax */
#include "allegro/platform/al386wat.h"
#else
/* asm not supported */
#define ALLEGRO_NO_ASM
#endif
#endif
#ifdef __cplusplus
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -