Login

Subversion Repositories NedoOS

Rev

Blame | Last modification | View Log | Download | RSS feed

 ifndef included_xexp
 define included_xexp
 include "../common/pushpop.asm"
 include "constantsx.asm"
 include "xmul.asm"
 include "xpow2.asm"

xexp_x=xOP3+42
xexp:
  call pushpop
  push bc
  ld de,xconst_lg_e
  ld bc,xexp_x
  call xmul
  ld hl,xexp_x
  pop bc
  jp xpow2
 endif