die Zerlegung geht auf verschiedene Weise,
zum Einen softwaretechnisch entweder direkt,
highbyte=high(wordvariable)
lowbyte = low(wordvariable)
oder
highbyte = wordvariable
shift wordvariable,right,8
lowbyte = wordvariable
oder per Variablendeklaration
dim lowbyte as byte at &ha0
dim highbyte as byte at &ha1
dim wordvariable as word at lowbyte overlay
Lesezeichen