1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-06-03 07:29:37 +00:00
kickc/src/test/kc/library/test12-typedef-lib/main.c
Flight_Control 00df07b7bf - Fixed test cases. Full retest of all test cases.
- Treat global variables of libraries, as part of the .asm library .namespace.
- Fix bugs.
- Assign meaningful struct names to .asm internal variables and labels. (Remove the $x notation).
2024-04-20 07:03:31 +03:00

26 lines
569 B
C

#pragma encoding(screencode_mixed)
#pragma var_model(zp)
#include "typedef_lib_types.h"
#include <typedef_lib_asm.h>
#include <print_lib_asm.h>
#include <stdio.h>
void main() {
clrscr();
fdata_t data1 = {1,2,3};
fdata_t data2 = {10,20,30};
printf("f1, data1 = %u\n", get_f1(&data1));
printf("f2, data2 = %u\n", get_f2(&data2));
printf("f1, data2 = %u\n", get_f1(&data2));
printf("f2, data1 = %u\n", get_f2(&data1));
// TODO ...
// printf("f1, data2 = %u\n", get_f1(&data));
// printf("f2, data1 = %u\n", get_f2(&data));
}