mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-11 04:29:48 +00:00
1 line
239 B
Plaintext
1 line
239 B
Plaintext
|
/* Conformance Test 25.0.26: Make sure static variabes can be used */
#include <stdio.h>
static int j;
void main(void)
{
static int i;
asm {
lda i
sta j
}
printf ("Passed Conformance Test 25.0.26\n");
}
|