Archive

Archive for September, 2009

svn & kompare

September 24th, 2009

svn diff -r500 | kompare -o -
svn diff -r549:551 | kompare -o -

Sam Uncategorized , ,

Blue Ink

September 19th, 2009

Weird thing about some government forms is you cant use blue ink. There should be a list of reasons for this. Here are some of my suggestions.

And the color shall be black. Not Grey, nor green or yellow. Red is right out.

If any other color than black is used the writer shall perform tracing jobs over all blue.

The reader of this document may be color blind to any color than black.

Sam Uncategorized

Inline Assembly set / clear status register

September 1st, 2009

/*Lock Interupts*/
uint16 srTemp;
asm volatile (”move.w %%sr, %0;” : “=r”(srTemp)::/*none*/);
asm volatile (”move.w #0×2700, %sr;”); /* Lock out interrupts */

Sam Uncategorized