?login_element?

Subversion Repositories NedoOS

Rev

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

  1.  ifndef included_xcosh
  2.  define included_xcosh
  3.  include "../common/pushpop.asm"
  4.  include "xexp.asm"
  5.  include "xinv.asm"
  6.  include "xamean.asm"
  7.  
  8. hyper_0=xOP1+72
  9. hyper_1=xOP1+82
  10. xcosh:
  11.   call pushpop
  12.   push bc
  13.   ld bc,hyper_0
  14.   call xexp
  15.   ld h,b
  16.   ld l,c
  17.   ld bc,hyper_1
  18.   call xinv
  19.   ld d,b
  20.   ld e,c
  21.   pop bc
  22.   jp xamean
  23.  
  24. ;#undefine hyper_0
  25. ;#undefine hyper_1
  26.  endif
  27.