Author: wmb Date: Mon Jan 16 22:04:41 2012 New Revision: 2819 URL: http://tracker.coreboot.org/trac/openfirmware/changeset/2819
Log: Added arm32rforth builder macro.
Modified: forth/lib/builder.fth
Modified: forth/lib/builder.fth ============================================================================== --- forth/lib/builder.fth Fri Jan 13 02:40:46 2012 (r2818) +++ forth/lib/builder.fth Mon Jan 16 22:04:41 2012 (r2819) @@ -212,17 +212,18 @@ also macros definitions : this ( -- $ ) build-files $top ; : dictionary ( -- $ ) dictionary-files $top ; -: sv9fth ( -- $ ) " ${HOSTDIR}/sv9fth" ; -: sparcfth ( -- $ ) " ${HOSTDIR}/sparcfth" ; -: alphafth ( -- $ ) " ${HOSTDIR}/alphafth" ; -: mipsfth ( -- $ ) " ${HOSTDIR}/mipsfth" ; -: ppcforth ( -- $ ) " ${HOSTDIR}/ppcforth" ; -: x86forth ( -- $ ) " ${HOSTDIR}/x86forth" ; -: 68kforth ( -- $ ) " ${HOSTDIR}/68kforth" ; -: armforth ( -- $ ) " ${HOSTDIR}/armforth" ; -: cforth ( -- $ ) " ${HOSTDIR}/cforth" ; -: builder ( -- $ ) " ${HOSTDIR}/forth ${HOSTDIR}/../build/builder.dic" ; -: tokenize ( -- $ ) " ${HOSTDIR}/forth ${HOSTDIR}/../build/builder.dic" ; +: sv9fth ( -- $ ) " ${HOSTDIR}/sv9fth" ; +: sparcfth ( -- $ ) " ${HOSTDIR}/sparcfth" ; +: alphafth ( -- $ ) " ${HOSTDIR}/alphafth" ; +: mipsfth ( -- $ ) " ${HOSTDIR}/mipsfth" ; +: ppcforth ( -- $ ) " ${HOSTDIR}/ppcforth" ; +: x86forth ( -- $ ) " ${HOSTDIR}/x86forth" ; +: 68kforth ( -- $ ) " ${HOSTDIR}/68kforth" ; +: armforth ( -- $ ) " ${HOSTDIR}/armforth" ; +: arm32rforth ( -- $ ) " ${HOSTDIR}/arm32rforth" ; +: cforth ( -- $ ) " ${HOSTDIR}/cforth" ; +: builder ( -- $ ) " ${HOSTDIR}/forth ${HOSTDIR}/../build/builder.dic" ; +: tokenize ( -- $ ) " ${HOSTDIR}/forth ${HOSTDIR}/../build/builder.dic" ; : output ( -- $ ) target-names $top ; previous definitions
openfirmware@openfirmware.info