float.s

来自「GNU binutils是GNU交叉工具链中的一个源码包」· S 代码 · 共 29 行

S
29
字号
	;; test float numbers and constants	.text        ;; Standard GAS syntaxstart:  ldf     0e0, f0        ldf     0e2.7, f0        ldf     0e2.7e1, f0        ldf     0e2.7e-1, f0        ldf     0e-2.7e1, f0        ldf     0e-2.7e-1, f0        ldf     -0e1.0, f0        ;; Standard TI syntax        ldf     0, f0        ldf     0.0, f0        ldf     0.5, f0        ldf     -0.5, f0        ldf     2.7, f0        ldf     2.7e-1, f0        ldf     -2.7e1, f0        ldf     -2.7e-1, f0FLOAT:   .float   0f0, 0f1.0, 0f0.5, 0f-1.0, 0e-1.0e25, 3, 123, 0f3.141592654SINGLE:  .single  0f0, 0f1.0, 0f0.5, 0f-1.0, 0e-1.0e25, 3, 123, 0f3.141592654DOUBLE:  .double  0f0, 0f1.0, 0f0.5, 0f-1.0, 0e-1.0e25, 3, 123, 0f3.141592654LDOUBLE: .ldouble 0f0, 0f1.0, 0f0.5, 0f-1.0, 0e-1.0e25, 3, 123, 0f3.141592654IEEE:    .ieee    0f0, 0f1.0, 0f0.5, 0f-1,0, 0e-1.0e25, 3, 123, 0f3.141592654      	.end

⌨️ 快捷键说明

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