x86 에서만 되나?
윈도우, 리눅스의 운영체제에서 다 돌아가지만 CPU는 가리는건가 확인 위해서
6.8 CPU
: Defining CPU Dependencies
The
directive restricts assembly to those instructions which are available on the specified CPU.
Options are:
Assemble only 8086 instruction setCPU 8086
Assemble instructions up to the 80186 instruction setCPU 186
Assemble instructions up to the 286 instruction setCPU 286
Assemble instructions up to the 386 instruction setCPU 386
486 instruction setCPU 486
Pentium instruction setCPU 586
Same as 586CPU PENTIUM
P6 instruction setCPU 686
Same as 686CPU PPRO
Same as 686CPU P2
Pentium III (Katmai) instruction setsCPU P3
Same as P3CPU KATMAI
Pentium 4 (Willamette) instruction setCPU P4
Same as P4CPU WILLAMETTE
Prescott instruction setCPU PRESCOTT
x86-64 (x64/AMD64/Intel 64) instruction setCPU X64
IA64 CPU (in x86 mode) instruction setCPU IA64
All options are case insensitive. All instructions will be selected only if they apply to the selected CPU or lower. By default, all instructions are available.
CPU로 찾은게 저정도, ARM으로 검색해도 나오는거 없음
'컴퓨터 과학 & 영상처리 관련 > Assembly (시스템 소프트웨어)' 카테고리의 다른 글
NASM system call int 명령어 (0) | 2014.03.29 |
---|---|
NASM db dw dd dq 의미 (0) | 2014.03.28 |
우분투에서 NASM 설치 및 LD로 컴파일 후 실행까지 (0) | 2014.03.25 |
윈도우에서 NASM 설치 및 프로그래밍 환경 (0) | 2014.03.16 |
nasm 윈도우, 리눅스 사용 방법 예제 (0) | 2014.02.25 |