co-mc.h

来自「PClint,一个非常严格的C/C++编译器, 可以嵌入到VC.GCC等.它甚至」· C头文件 代码 · 共 18 行

H
18
字号

// The following is designed to support the use of the asm() function
// which in turn provides support for in-line assembly.  The format of
// the asm() function is asm(type,string).  The result is an expression
// whose C type is given as first argument.

// this file can automatically be included within every module by
// use of the PC-lint option:
//
//                   -header(co-mc.h)


#define asm(type,string) ((type) __asm_func())
unsigned __asm_func(void);



⌨️ 快捷键说明

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