Changes

3 bytes removed ,  01:07, 4 June 2022
m
Exec -> Exe
Line 3: Line 3:  
== Attributes ==
 
== Attributes ==
   −
=== Exec ===
+
=== Exe ===
 
'''Availability''': This attribute is only available on the first instance (index 0).
 
'''Availability''': This attribute is only available on the first instance (index 0).
   Line 22: Line 22:  
//start the PowerPC
 
//start the PowerPC
 
int8_t start = 2;
 
int8_t start = 2;
bspWrite("PPC", 0, "Exec", 1, &start);
+
bspWrite("PPC", 0, "Exe", 1, &start);
 
//stop the PowerPC
 
//stop the PowerPC
 
int8_t stop = 1;
 
int8_t stop = 1;
bspWrite("PPC", 0, "Exec", 1, &stop);
+
bspWrite("PPC", 0, "Exe", 1, &stop);
 
</syntaxhighlight>
 
</syntaxhighlight>