home *** CD-ROM | disk | FTP | other *** search
/ Commodore 64 Scene Diskmags Assortment / Revealed_02_1993-11-01_Camelot.d64 / mult.r < prev    next >
Text File  |  2023-02-26  |  317b  |  24 lines

  1. result   .word 0
  2. m        .byte 0  ; m*n
  3. n        .byte 0
  4. mult
  5.          clc
  6.          lda #$00
  7.          sta result
  8.          ldx #$08
  9. gentag
  10.          lsr m
  11.          bcc noadd
  12.          clc
  13.          adc n
  14. noadd
  15.          ror a
  16.          ror result
  17. rorb
  18.          dex
  19.          bne gentag
  20.          sta result+1
  21.          rts
  22.  
  23.  
  24.