User:RafaelOrtiz: Difference between revisions

From OLPC
Jump to navigation Jump to search
mNo edit summary
Line 41: Line 41:
* Do a re-lecture of [[Ec_specification]] and [[Revised_EC_Port_6C_Command_Protocol]], possible extension of that articles.
* Do a re-lecture of [[Ec_specification]] and [[Revised_EC_Port_6C_Command_Protocol]], possible extension of that articles.
== Notes ==
== Notes ==
=== Forth Things ===

l@ ( adr -- l ) \ Fetch a 32-bit value
l! ( l adr -- ) \ Store a 32-bit value
w@ ( adr -- w ) \ Fetch a 16-bit value
<w@ ( adr -- w ) \ Fetch a 16-bit value, sign extending
w! ( w adr -- ) \ Store a 16-bit value
c@ ( adr -- b ) \ Fetch a 8-bit value
c! ( b adr -- ) \ Store a 8-bit value

ok 12345 constant mynum \defining hex constants

Revision as of 16:07, 30 June 2007

es Castellano es la lengua materna de este usuario

Contributer.gif


Working on

Things to look at

TO DO

Notes

Forth Things

l@  ( adr -- l )    \ Fetch a 32-bit value
l!  ( l adr -- )    \ Store a 32-bit value
w@  ( adr -- w )    \ Fetch a 16-bit value
<w@ ( adr -- w )    \ Fetch a 16-bit value, sign extending
w!  ( w adr -- )    \ Store a 16-bit value
c@  ( adr -- b )    \ Fetch a 8-bit value
c!  ( b adr -- )    \ Store a 8-bit value
 ok 12345 constant mynum \defining hex constants