Changeset 510 for trunk/thune/stdio.c

Show
Ignore:
Timestamp:
02/10/08 23:53:46 (9 months ago)
Author:
krobillard
Message:

'loop is now an opcode and can act as loop.to for integers.
File port! read now handles optional limit.
console.out now handles binary!.
Can now 'make an int! from first 4 bytes of a binary!
Added ur_initDecimal macro.
Added 'fcalc.
Removed word inc/dec.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/stdio.c

    r469 r510  
    5656            fwrite( it, 1, end - it, stdout ); 
    5757        } 
     58    } 
     59    else if( ur_binarySlice(ut, tos, &it, &end) && it ) 
     60    { 
     61        fwrite( it, 1, end - it, stdout ); 
    5862    } 
    5963