mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-11 12:05:55 +00:00
13 lines
130 B
C
13 lines
130 B
C
extern int variable;
|
|
#include <SegLoad.h>
|
|
void Foo()
|
|
{
|
|
variable *= 9;
|
|
}
|
|
|
|
void Bar()
|
|
{
|
|
variable /= 9;
|
|
variable *= 7;
|
|
}
|