- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
#include <cstdio>
int main(void)
{
static char data[] = "sosu hui\n";
__asm
{
mov eax, 0
ploop:
mov bl, [data + eax]
push eax
push bx
call putchar
pop bx
pop eax
inc eax
cmp bl, 0
jnz ploop
}
return 0;
}
MaaKut 05.11.2021 20:54 # 0
ObeseYoung 05.11.2021 21:08 # 0
nepekam 05.11.2021 21:36 # 0
bormand 06.11.2021 07:19 # 0
Перепиши под 64 бита.
digitalEugene 14.02.2022 09:34 # 0
Rooster 14.02.2022 09:35 # 0
j123123 14.02.2022 09:41 # 0
Rooster 14.02.2022 09:42 # 0
Fike 14.02.2022 09:44 # 0
Rooster 14.02.2022 09:44 # +1
bormand 14.02.2022 10:03 # 0
Rooster 14.02.2022 10:04 # 0
OMuKPOH 14.02.2022 20:45 # 0