mirror of
https://github.com/zeldaret/mm.git
synced 2026-06-07 03:47:43 -04:00
1611c22212
* Matching dmatable * Generate NON_MATCHING dmadata * Clean up dmamgr * Format * Ignore tools/buildtools/mkdmadata * Warnings * Use SYMS flag instead of segment name * PR + more notes * PR cleanups
10 lines
223 B
C
10 lines
223 B
C
/**
|
|
* Select dmadata table for version
|
|
*/
|
|
#ifdef NON_MATCHING
|
|
// For non-matching builds, dmadata is generated from the specfile segments
|
|
#include "dmadata_table_spec.h"
|
|
#else
|
|
#include "dmadata/dmadata_table_us.h"
|
|
#endif
|