I was trying to implement Hello world program in Assembly, but there is some
warning:
cpuid.s: Assembler messages: cpuid.s: Warning: end of file not at end of a line; newline inserted
There is code below
.section .data
output:
.ascii "The processor Vender Id is 'xxxxxxxxxxxx'"
.section .text
.globl _start
_start:
mov $0,%eax
cpuid
movl $output ,%edi
movl %ebx,28(%edi)
movl %edx,32(%edi)
movl %ecx,36(%edi)
movl $4,eax
movl $1,ebx
movl $output,%ecx
movl $43,%edx
int $0x80
movl $1,%eax
movl $0,%ebx
int $0x80