alias.asm
来自「一个简单的汇编程序源代码」· 汇编 代码 · 共 25 行
ASM
25 行
;
; alias.asm
;
; Copyright (c) 1993 by Borland International, Inc.
;
; This module will be tlib-ed into library.lib to define the aliases.
;
; Part of the aliasdos example.
;
; Build using the provided makefile using: "make -B".
; Alias records for newuser.c
alias <_Set_Coords> = <_SetCoords>
alias <_Draw_Happy_Face> = <_DrawHappyFace>
alias <_Print_Message> = <_PrintMessage>
; Alias record for cppuser.cpp
alias <@SetCoords$qii> = <_SetCoords>
alias <@DrawHappyFace$qc> = <_DrawHappyFace>
alias <@PrintMessage$qpc> = <_PrintMessage>
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?