mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-07 04:38:00 +00:00
11 lines
155 B
C
11 lines
155 B
C
|
|
/* general simple function to use as a template for assembly hacks */
|
|
|
|
void fooble ( int* a )
|
|
{
|
|
a[0] = 33;
|
|
a[1] = 44;
|
|
a[2] = 55;
|
|
a[3] = 66;
|
|
}
|