Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     ;ctype.h
  2. isalpha     asl.w #1,d0
  3.     andi #15,ccr
  4.     bra.s quickL
  5. iscntrl     ori #16,ccr
  6.     roxl.w #1,d0
  7.     ori #16,ccr
  8.     bra.s quickL
  9. ispunct     ori #16,ccr
  10.     roxl.w #1,d0
  11.     andi #15,ccr
  12.     bra.s quickL
  13. isdigit     asl.w #1,d0
  14.     ori #16,ccr
  15.     bra.s quickL
  16. isprint     bsr.s iscntrl
  17.     eori #4,ccr
  18.     rts
  19. isupper     bsr.s isalpha
  20.     beq.s continue
  21.     eori #4,ccr
  22.     rts
  23. continue    cmpi #384,d0
  24.     blt.s done
  25.     rts
  26. done        ori #4,ccr
  27.     rts
  28. islower     bsr isalpha
  29.     beq.s avance
  30.     eori #4,ccr
  31.     rts
  32. avance      cmpi #384,d0
  33.     bgt.s done
  34. isgraph     moveq #3,d1
  35.     asl.w #1,d0
  36.     andi #15,ccr
  37.     bra.s slowL
  38. isalnum     moveq #2,d1
  39.     asl.w #1,d0
  40.     andi #15,ccr
  41.     bra.s slowL
  42. asciTable   dc.w 0x1111
  43.     dc.w 0x1111
  44.     dc.w 0x1111
  45.     dc.w 0x1111
  46.     dc.w 0x1111
  47.     dc.w 0x1111
  48.     dc.w 0x1111
  49.     dc.w 0x1111
  50.     dc.w 0x0222
  51.     dc.w 0x2222
  52.     dc.w 0x2222
  53.     dc.w 0x2222
  54.     dc.w 0x4444
  55.     dc.w 0x4444
  56.     dc.w 0x4422
  57.     dc.w 0x2222
  58.     dc.w 0x2888
  59.     dc.w 0x8888
  60.     dc.w 0x8888
  61.     dc.w 0x8888
  62.     dc.w 0x8888
  63.     dc.w 0x8888
  64.     dc.w 0x8882
  65.     dc.w 0x2222
  66.     dc.w 0x2888
  67.     dc.w 0x8888
  68.     dc.w 0x8888
  69.     dc.w 0x8888
  70.     dc.w 0x8888
  71.     dc.w 0x8888
  72.     dc.w 0x8882
  73.     dc.w 0x2221
  74. quickL      roxl.w #1,d0
  75.     bftst (-66,PC){d0:1}
  76.     eori #4,ccr
  77.     rts
  78. slowL       bftst (-84,PC){d0:d1}
  79.     eori #4,ccr
  80.     rts
  81. isblank     asl #2,d0
  82.     bftst (-92,PC){d0:4}
  83.     beq quit
  84.     cmpi #36,d0
  85.     beq quit
  86.     rts
  87. quit        ori #4,ccr
  88.     rts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement