global _start
section .data
outstr: db "____________"
outstrlen: equ 0x0C
section .text
_start:
mov eax, 0x00
cpuid
mov esi, outstr
mov [esi], ebx
inc esi
inc esi
inc esi
inc esi
mov [esi], ecx
inc esi
inc esi
inc esi
inc esi
mov [esi], edx
inc esi
inc esi
inc esi
inc esi
mov edx, outstrlen
mov ecx, outstr
mov ebx, 1
mov eax, 4
int 0x80
mov ebx, 0
mov eax, 1
int 0x80