home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_10 / DEVELOP.LZH / DSP / DSPDEBUG / EXAMPLES / DEMO.ASM next >
Assembly Source File  |  1992-09-11  |  620b  |  52 lines

  1. START    equ    $200
  2.  
  3.     include    "ioequ.asm"
  4.  
  5.     org    p:0
  6.     jmp    Start
  7.     org    p:8
  8.     nop
  9.     nop
  10.     org    p:$1c
  11.     nop
  12.     nop
  13.     org    p:$20
  14.     nop
  15.     nop
  16.     nop
  17.     nop
  18.     org    p:$3c
  19.     nop
  20.     nop
  21.     org    p:$40
  22.     nop
  23.  
  24.     org    l:0
  25. Ldata:    dc    $000000000001
  26.     dc    $000002000003
  27.     dc    $000004000005
  28.     dc    $000006000007
  29.     dc    $000008000009
  30.     dc    $00000A00000B
  31.     dc    $00000C00000D
  32.     dc    $00000E00000F
  33.     org    p:$300
  34. Data    bsc    256,$10
  35.     org    p:START
  36. Start    movep    x:HCR,r0
  37.     move    #.5,a
  38.     move    a,X:$200
  39.     move    #.25,b
  40.     add    a,b        b,X:$201
  41.     move    b,X:$202
  42.     swi
  43.     org    x:0
  44. XBss    bsc    256,0
  45.     bsc    512,1
  46.     org    y:$fff
  47. YBss    bsc    16,-1
  48.     org    l:$fff
  49. LBss    bsc    64,-2
  50.  
  51.     end    Start
  52.