diff options
| author | Roman971 <32455037+Roman971@users.noreply.github.com> | 2020-05-26 14:50:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-26 08:50:51 -0400 |
| commit | 2c5ad24c3faa207472dae1c75ebfd9da83b1602c (patch) | |
| tree | 0bc4585471b5bac09f41e84e1d6956458a5dcc73 /src/code/z_common_data.c | |
| parent | 3d050f286114de1332781ed951b90d42ac36c8ee (diff) | |
Migrate z_common_data.c's .bss to C (#157)
Diffstat (limited to 'src/code/z_common_data.c')
| -rw-r--r-- | src/code/z_common_data.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/code/z_common_data.c b/src/code/z_common_data.c index 798f95d8e..53a2fa82d 100644 --- a/src/code/z_common_data.c +++ b/src/code/z_common_data.c @@ -1,6 +1,10 @@ #include <ultra64.h> #include <global.h> +SaveContext gSaveContext; +u32 D_8015FA88; +u32 D_8015FA8C; + void SaveContext_Init(void) { bzero(&gSaveContext, sizeof(gSaveContext)); D_8015FA88 = 0; |
