c64-livecoding/wip-hugo/routines/arithmatic/mult_test.s

10 lines
268 B
ArmAsm

;;; -*- Mode: asm; indent-tabs-mode: t; tab-width: 8 -*-
;;Calculates $11 * $0E = $EE
.scope mult_test
.include "arithmatic.inc"
LDA #$0F
STA VAL_A
LDA #$07
STA VAL_B
JSR mult; A = $69 if it works as it should
.endscope