Subversion Repositories pentevo

Rev

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

  1.         cpu     8080
  2.  
  3.         ; note: CHARSET also acts on arguments of CHARSET itself,
  4.         ; so 'charset 'a','z',1 | charset 'd',255 won't work as expected.
  5.  
  6.         charset 'a','c',1
  7.         charset 'd',255
  8.         charset 'e','z',5
  9.         db      "drei droege drachen drehen durch"
  10.  
  11.         ; alternate way of doing it: 100 is ASCII code of 'd'
  12.  
  13.         charset
  14.         charset 'a','z',1
  15.         charset 100,255
  16.         db      "drei droege drachen drehen durch"
  17.  
  18.         ; back to normality:
  19.  
  20.         charset
  21.         db      "drei droege drachen drehen durch"
  22.