newsgas.h
来自「gcc-2.95.3 Linux下最常用的C编译器」· C头文件 代码 · 共 20 行
H
20 行
/* In Sony versions before 3.0, use the GNU Assembler, because the system's assembler has no way to assemble the difference of two labels for the displacement in a switch-dispatch instruction. */ #define USE_GAS/* This is the assembler directive to equate two values. */#undef SET_ASM_OP#define SET_ASM_OP ".set"/* This is how we tell the assembler that a symbol is weak. */#undef ASM_WEAKEN_LABEL#define ASM_WEAKEN_LABEL(FILE,NAME) \ do { fputs ("\t.weak\t", FILE); assemble_name (FILE, NAME); \ fputc ('\n', FILE); } while (0)#include "m68k/news.h"
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?