# File lib/disassemblers/D65.rb, line 95
  def self.make_printable(b)
    if (b%0x80)>=0x20 then 
      (b%0x80).chr
    else
      '.'
    end
  end