nasm
美
英 
- 網絡匯編器;醫學學會;美國國家運動醫學會(National Academy of Sports Medicine)
例句
The -a option, requiring no argument, instructs NASM to replace its powerful preprocessor with a stub preprocessor which does nothing.
a選項不要求任何參數,通知NASM的強大的預處理器不進行任何處理。
As with NASM, GAS looks for this _start label as the default entry point of a program.
與NASM一樣,GAS尋找這個_start標簽作為程序的默認進入點。
NASM uses the byte operator to tell the assembler that a byte of data is to be moved.
NASM使用字節操作符告訴匯編器要移動一個字節的數據。
So one thing NASM can't handle is code whose size depends on the value of a symbol declared after the code in question.
那么一件事NASM無法處理是大小取決于標志的價值被宣稱在代碼以后在考慮中的代碼。
NASM defines a set of standard macros , which are already defined when it starts to process any source file.
NASM在開始處理任何源文件前已經定義了一系列標準宏。
If you believe the output file from NASM to be faulty, send it to us.
如果你認為從NASM得到的輸出文件是錯誤的請把它送給我們。
The heading for this section promises a discussion of macros, and both NASM and GAS certainly support them.
本節要討論宏以及NASM和GAS對它們的支持。
Dw symbol, seg symbol NASM supports no convenient synonym for this , though you can always invent one using the macro processor .
NASM不支持其它的方式來做到這一點,盡管你可以用宏處理器來創造一個。
The arithmetic operators provided by NASM are listed here, in increasing order of precedence.
NASM的代數操作符列于下面,按優先權增加的順序排列。
NASM may also support . EXE natively as another output format in future releases.
在NASM的未來版本中,可能會將.EXE作為另一種可支持的輸出格式來對待。
NASM uses square brackets to dereference the value at the address pointed to by a memory location: [var1].
NASM使用方括號間接引用一個內存位置指向的地址值:[var1]。
Netwide Assembler (NASM) support (an assembly language compiler) is also required for EffecTV to process its included effects correctly.
為了讓EffecTV正確地處理它包含的效果,還需要NetwideAssembler(NASM)支持(一種匯編語言編譯器)。
This little program describes the basic structure of an assembly program for both GAS and NASM.
這個小程序展示了NASM和GAS的匯編程序的基本結構。
A label always ends with a colon in both GAS and NASM.
在GAS和NASM中標簽都以冒號結尾。
NASM will reject this example because it cannot tell the size of the TIMES line when it first sees it.
NASM將拒絕這個例子因為它無法告訴時期線的大小它首先看它。
And for those already familiar with both NASM and GAS, you might still find something useful here, such as macros.
那些已經熟悉NASM和GAS的讀者也可以在這里找到有用的內容,比如宏。
Both GAS and NASM use the same mnemonic for interrupts.
GAS和NASM對中斷使用同樣的助記符。
Functions are declared the same way in both NASM and GAS.
在NASM和GAS中聲明函數的方法是相同的。
GAS uses the 0x prefix to specify a hex number, whereas NASM uses the h suffix.
GAS使用0x前綴指定十六進制數字,NASM使用h后綴。
In NASM, a similar construct is used at the preprocessor level.
在NASM中,在預處理器級使用相似的結構。
There is also an alternative in NASM, the times directive.
在NASM中還有另一種結構,times指令。
int $0x80 (or 80h in NASM) is used to invoke Linux and request a service.
int$0x80(或NASM中的80h)用來向Linux請求一個服務。
NASM allows you to specify files to be pre-included into your source file, by the use of the -p option. So running
通過使用-p選項,NASM允許你指明預包含到源文件中的文件。因此運行如下命令
NASM also allows you to define single-line macros which are local to a particular context, in just the same way
NASM也允許你定義單行宏,它可以用一個特殊的上下文來定位,方式同樣是
Basic syntactical differences between NASM and GAS
NASM和GAS之間的基本語法差異
Assembler directives peculiar to either NASM or GAS
NASM或GAS特有的匯編器指令
For example, to calculate the length of a string, you would use the following idiom in NASM
例如,為了計算一個字符串的長度,在NASM中會使用以下指令