aboutsummaryrefslogtreecommitdiffstats
path: root/test/e2e/call_stack/run_mul.atk16
blob: feaabe72c429304d9c8a5ca065ddbe0377be21e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; bootstrap code (must be called to setup mandatory data)
; will jump to label main
@include ../bootstrap
@include lib

; values replaced by test driver code
@label INPUT_A
  %INPUT_A%
@label INPUT_B
  %INPUT_B%

@label main
  ldi INPUT_A RA
  ldr RA RA
  ldi INPUT_B RB
  ldr RB RB
  calli mul
  hlt