home *** CD-ROM | disk | FTP | other *** search
/ Magic Disk 64 / Magic_Disk_64_93-12_1993_-_de_Side_B.d64 / lo-hi-umwandlung (.txt) < prev    next >
Commodore BASIC  |  2023-02-26  |  125b  |  6 lines

  1. 10 input"absuluter wert (max. 65535) ";we
  2. 20 hi=int(we/256)
  3. 30 lo=we-256*hi
  4. 40 print"low-byte : "lo
  5. 50 print"high-byte: "hi
  6.