14 lines
483 B
PHP
14 lines
483 B
PHP
|
|
section .data
|
|
str_template: db "Command %s took %lld seconds and %lld nanoseconds to execute 1 000 000 000 times", 10, 0
|
|
template_len equ $-str_template
|
|
|
|
nop_command: db '`empty loop`', 0
|
|
reg_command: db '`inc ebx`', 0
|
|
rel_reg: db '`inc byte [rax]`', 0
|
|
ind_base: db '`inc byte [rax + rbx]`', 0
|
|
ind_base_disp: db '`inc byte [rax + rbx + 122]`', 0
|
|
|
|
tick_count: db 'Last command also took %lli ticks to complete', 10, 0
|
|
|