Memory Pointers

Write to a specific location in memory


(*(unsigned int*)0xffe0004c) = 0;
(*(unsigned int*)reg_value) = 0;

(more…)

Pointer To A Function

The function:
	WORD my_function_name (BYTE a, WORD b);
Declaring a pointer to a function:

(more…)