(MSVC) Compatibility fixes

This commit is contained in:
Twinaphex
2014-03-17 18:15:55 +01:00
parent 4835077e00
commit ed06ffd339
8 changed files with 349 additions and 36 deletions

View File

@@ -10,7 +10,11 @@
#include <pico/pico_int.h>
#include "cmn.h"
#ifdef _MSC_VER
u8 tcache[DRC_TCACHE_SIZE];
#else
u8 __attribute__((aligned(4096))) tcache[DRC_TCACHE_SIZE];
#endif
void drc_cmn_init(void)