update info

This commit is contained in:
chyyuu 2013-09-17 19:50:39 +08:00
parent 1851498df5
commit 35fabb8708
11 changed files with 14 additions and 0 deletions

BIN
labdocs/reference.pdf Normal file

Binary file not shown.

View File

@ -0,0 +1,14 @@
int count=1;
int value=1;
int buf[10];
void main()
{
asm(
"cld \n\t"
"rep \n\t"
"stosl"
:
: "c" (count), "a" (value) , "D" (buf[0])
:
);
}