aboutsummaryrefslogtreecommitdiffstats
path: root/test/e2e/std_mem/run_memcopy.atk16
blob: 66f3c1d881f31b15d35e711eb5fbfdccd7155eb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@include %bootstrap
@include %std_mem

@label mem_offset_from
  0x9000
@label mem_offset_to
  0x9100

@label main
  ; set values 0x0000..0x0004 to 3
  ldi mem_offset_from RA
  ldr RA RA
  ldi 5 RB
  ldi 3 RC
  calli memset
  hlt

  ldi mem_offset_to RB
  ldr RB RB
  ldi 5 RC
  calli memcopy

  hlt