section .data
msg db "The Vendor id string is 'xxxxxxxxxxxx'", 0ah 
 
section .text 
    global _start 
 
_start:    
xor eax,eax
cpuid
mov edi,msg
mov [edi+25],ebx
mov [edi+29],edx
mov [edi+33],ecx
mov rax,1
mov rdi,1
mov rsi,msg     
mov rdx,41
syscall     
mov rax, 60
mov rdi, 0
syscall

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: