Welcome, Guest. Please login or register.

Author Topic: ARexx emitting 00x with WRITECH()??  (Read 1461 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline Thomas

Re: ARexx emitting 00x with WRITECH()??
« on: August 10, 2015, 09:45:26 PM »
Works for me.

Code: [Select]

4> type test.bin opt h
0000: 0099FF12 34                            ....4                
4>


Your open is missing the write parameter. You should call it as a function and check the result. Open can fail.

Offline Thomas

Re: ARexx emitting 00x with WRITECH()??
« Reply #1 on: August 11, 2015, 06:48:08 AM »
What does Regina say about this:

Code: [Select]

a = '0099'x
say length(a)


and if length is 2, does this make any difference:

Code: [Select]

a = '0099'x
call writech 'outfile', a