Skip to content

Instantly share code, notes, and snippets.

View amostyaev's full-sized avatar

Artem Mostyaev amostyaev

  • Chess King
  • Moscow
View GitHub Profile
@amostyaev
amostyaev / 2023-117-05-02.asm
Created May 2, 2023 15:04
Семинар от 2 мая
INCLUDE settings.inc
INCLUDE io2020.inc
.STACK 4096
.DATA
FStr DB 'The program starts working.',0
LStr DB 'The program has ended.',0
; X DB 1, 2, 3, 3, 3
STR DB 'ABCFF'
@amostyaev
amostyaev / 2023-115-05-02.asm
Created May 2, 2023 15:03
Семинар от 2 мая
INCLUDE settings.inc
INCLUDE io2020.inc
.STACK 4096
.DATA
X DB 'HELLO WORLDDDDDD'
; N = 5
; X DB N dup(?)
FStr DB 'The program starts working.',0
LStr DB 'The program has ended.',0
@amostyaev
amostyaev / 2023-117-04-25.asm
Last active April 25, 2023 15:18
Семинар от 25 апреля
INCLUDE settings.inc
INCLUDE io2020.inc
.STACK 4096
.DATA
FStr DB 'The program starts working.',0
LStr DB 'The program has ended.',0
A DD 27
B DD 24
@amostyaev
amostyaev / 2023-115-04-25.asm
Created April 25, 2023 15:17
Семинар от 25 апреля
INCLUDE settings.inc
INCLUDE io2020.inc
.STACK 4096
.DATA
FStr DB 'The program starts working.',0
LStr DB 'The program has ended.',0
A DD 267
B DD 34
@amostyaev
amostyaev / 2023-117-04-04.asm
Created April 4, 2023 14:56
Семинар от 4 апреля
INCLUDE settings.inc
INCLUDE io2020.inc
.STACK 4096
.DATA
FStr DB 'The program starts working.',0
LStr DB 'The program has ended.',0
TIME STRUC
H DB ?
@amostyaev
amostyaev / 2023-115-04-04.asm
Created April 4, 2023 14:55
Семинар от 4 апреля
INCLUDE settings.inc
INCLUDE io2020.inc
.STACK 4096
.DATA
FStr DB 'The program starts working.',0
LStr DB 'The program has ended.',0
X DD ?
K DB 0
@amostyaev
amostyaev / 2023-117-03-28.asm
Created March 28, 2023 15:16
Семинар от 28 марта
INCLUDE settings.inc
INCLUDE io2020.inc
.STACK 4096
.DATA
FStr DB 'The program starts working.',0
LStr DB 'The program has ended.',0
M = 3
@amostyaev
amostyaev / 2023-115-03-28.asm
Last active March 28, 2023 15:15
Семинар от 28 марта
INCLUDE settings.inc
INCLUDE io2020.inc
.STACK 4096
.DATA
FStr DB 'The program starts working.',0
LStr DB 'The program has ended.',0
;N = 5
; X dd N dup (?)
@amostyaev
amostyaev / 2023-117-03-21.asm
Created March 21, 2023 15:11
Семинар от 21 марта
INCLUDE settings.inc
INCLUDE io2020.inc
.STACK 4096
.DATA
FStr DB 'The program starts working.',0
LStr DB 'The program has ended.',0
X DQ 0
S DB 0
@amostyaev
amostyaev / 2023-115-03-21.asm
Created March 21, 2023 15:10
Семинар от 21 марта
INCLUDE settings.inc
INCLUDE io2020.inc
.STACK 4096
.DATA
FStr DB 'The program starts working.',0
LStr DB 'The program has ended.',0
X DQ 1h