User:RafaelOrtiz: Difference between revisions

From OLPC
Jump to navigation Jump to search
Line 28: Line 28:
* [[Embedded_controller]]
* [[Embedded_controller]]
* [[User:RafaelOrtiz/NandTest]]
* [[User:RafaelOrtiz/NandTest]]

* Work on procedures standardizations on [[User:RafaelOrtiz/UserCases]], this is intended to give an accurate support for making sugar activities (with all the refinements involved). also in near future extended to general procedures of the laptop like doing upgrades and so on. this page should be merge with [[Support]], and also give feedback about that.
* [[Open Hardware]]

= Things to look at =
= Things to look at =



Revision as of 02:22, 1 October 2007

es Castellano es la lengua materna de este usuario
en-3

This user is able to contribute with an advanced level of English.

fr-2 Cet utilisateur peut contribuer avec un niveau intermédiaire en français.

Contributer.gif


Working on

  • Work on procedures standardizations on User:RafaelOrtiz/UserCases, this is intended to give an accurate support for making sugar activities (with all the refinements involved). also in near future extended to general procedures of the laptop like doing upgrades and so on. this page should be merge with Support, and also give feedback about that.
  • Open Hardware

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
pc@ ( port# -- byte )  \ Read from an 8-bit I/O port --- P ports
pw@ ( port# -- word )  \ Read from a 16-bit I/O port
pl@ ( port# -- long )  \ Read from a 32-bit I/O port
pc! ( byte port# -- )  \ Write to an 8-bit I/O port
pw! ( word port# -- )  \ Write to a 16-bit I/O port
pl! ( long port# -- )  \ Write to a 32-bit I/O port

Open EC