Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!julius.cs.uiuc.edu!apple!snorkelwacker!ai-lab!wheat-chex!bson From: bson@wheat-chex.ai.mit.edu (Jan Brittenson) Newsgroups: comp.sys.handhelds Subject: Re: Machine code on the HP48 Message-ID: <10430@life.ai.mit.edu> Date: 4 Sep 90 21:42:15 GMT References: Sender: news@ai.mit.edu Distribution: comp Organization: nil Lines: 30 In article tjb@tadtec.uucp (Tim Bissell) writes: > I can assemble the supplied cht.s example > program, and get this in ->SYS mode: > HP: T(3); > { > #1231641961231341h > #2314412313417E47h > #C808461241h > } This is not a code object. You have to include an a-sized (5 nibbles) type (02DCC stored backwards) followed by an a-sized length. The length is the size of the actual code, 2*16+10 (#2Ah) in your example. So try: { #2313410002A02DCCh #417E471231641961h #4612412314412313h #C808h } ->SYS I've never used sass, but you should be able to insert a type constant and a length at the beginning if sass doesn't do it for you. (Seems silly if it doesn't, since the output wouldn't be ->SYS compatible.)