- Mastering Assembly Programming
- Alexey Lyashko
- 187字
- 2021-08-20 10:23:24
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows:
"If you decide to move it elsewhere, do not forget to put the INCLUDE folder and the FASMW.INI file (if one has already been created) into the same directory."
A block of code is set as follows:
fld [radius] ; Load radius to ST0
; ST0 <== 0.2345
fldpi ; Load PI to ST0
; ST1 <== ST0
; ST0 <== 3.1415926
fmulp ; Multiply (ST0 * ST1) and pop
; ST0 = 0.7367034
fadd st0, st0 ; * 2
; ST0 = 1.4734069
fstp [result] ; Store result
; result <== ST0
Any command-line input or output is written as follows:
sudo yum install binutils gcc
New terms and important words are shown in bold.
Warnings or important notes appear like this.
Tips and tricks appear like this.
推薦閱讀
- Mastering Python Networking
- Visual C#通用范例開發(fā)金典
- Java EE核心技術(shù)與應(yīng)用
- Protocol-Oriented Programming with Swift
- OpenResty完全開發(fā)指南:構(gòu)建百萬級別并發(fā)的Web應(yīng)用
- Troubleshooting Citrix XenApp?
- Kotlin Programming By Example
- Distributed Computing in Java 9
- PhoneGap 4 Mobile Application Development Cookbook
- MongoDB Cookbook(Second Edition)
- Groovy 2 Cookbook
- Java服務(wù)端研發(fā)知識圖譜
- Distributed Computing with Python
- Python Django Web從入門到項(xiàng)目實(shí)戰(zhàn)(視頻版)
- Python程序設(shè)計(jì)現(xiàn)代方法