Subversion Repositories pentevo

Rev

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

  1.         cpu     kenbak
  2.         page    0
  3.  
  4.         org     4               ; locations 0..3 are registers
  5.  
  6.         irp     instr,add,sub,load,store
  7.         irp     reg,a,b,x
  8.         instr   reg,#12h
  9.         instr   reg,12h
  10.         instr   reg,a
  11.         instr   reg,b
  12.         instr   reg,x
  13.         instr   reg,(12h)
  14.         instr   reg,12h,x
  15.         instr   reg,(12h),x
  16.         endm
  17.         endm
  18.  
  19.         irp     instr,and,or,lneg
  20.         instr   a,#12h
  21.         instr   a,12h
  22.         instr   a,a
  23.         instr   a,b
  24.         instr   a,x
  25.         instr   a,(12h)
  26.         instr   a,12h,x
  27.         instr   a,(12h),x
  28.         endm
  29.