mirror of
https://github.com/Xeeynamo/sotn-decomp.git
synced 2024-11-23 13:09:44 +00:00
Mark SEL handwritten functions as asm (#977)
This commit is contained in:
parent
faaa160129
commit
23a143b295
3
Makefile
3
Makefile
@ -76,6 +76,7 @@ define list_src_files
|
||||
$(foreach dir,$(ASM_DIR)/$(1),$(wildcard $(dir)/**.s))
|
||||
$(foreach dir,$(ASM_DIR)/$(1)/data,$(wildcard $(dir)/**.s))
|
||||
$(foreach dir,$(ASM_DIR)/$(1)/psxsdk,$(wildcard $(dir)/**.s))
|
||||
$(foreach dir,$(ASM_DIR)/$(1)/handwritten,$(wildcard $(dir)/**.s))
|
||||
$(foreach dir,$(SRC_DIR)/$(1),$(wildcard $(dir)/**.c))
|
||||
$(foreach dir,$(SRC_DIR)/$(1)/psxsdk,$(wildcard $(dir)/**.c))
|
||||
$(foreach dir,$(ASSETS_DIR)/$(1),$(wildcard $(dir)/**))
|
||||
@ -247,7 +248,7 @@ mad_fix: stmad_dirs $$(call list_o_files,st/mad) $$(call list_o_files,st)
|
||||
tt_%_dirs:
|
||||
$(foreach dir,$(ASM_DIR)/servant/tt_$* $(ASM_DIR)/servant/tt_$*/data $(SRC_DIR)/servant/tt_$* $(ASSETS_DIR)/servant/tt_$*,$(shell mkdir -p $(BUILD_DIR)/$(dir)))
|
||||
st%_dirs:
|
||||
$(foreach dir,$(ASM_DIR)/st/$* $(ASM_DIR)/st/$*/data $(SRC_DIR)/st/$* $(ASSETS_DIR)/st/$*,$(shell mkdir -p $(BUILD_DIR)/$(dir)))
|
||||
$(foreach dir,$(ASM_DIR)/st/$* $(ASM_DIR)/st/$*/data $(ASM_DIR)/st/$*/handwritten $(SRC_DIR)/st/$* $(ASSETS_DIR)/st/$*,$(shell mkdir -p $(BUILD_DIR)/$(dir)))
|
||||
%_dirs:
|
||||
$(foreach dir,$(ASM_DIR)/$* $(ASM_DIR)/$*/data $(SRC_DIR)/$* $(ASSETS_DIR)/$*,$(shell mkdir -p $(BUILD_DIR)/$(dir)))
|
||||
|
||||
|
@ -120,5 +120,7 @@ segments:
|
||||
- [0x3642C, c, 3642C]
|
||||
- [0x380F0, c, save_mgr]
|
||||
- [0x39744, c, stream]
|
||||
- [0x3AB70, asm, handwritten/func_801BAB70]
|
||||
- [0x3ABA4, asm, handwritten/DecDCTvlc]
|
||||
- [0x3AEE4, sbss]
|
||||
- [0x56B28]
|
||||
|
@ -309,7 +309,3 @@ int MDEC_print_error(const char* funcName) {
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
INCLUDE_ASM("st/sel/nonmatchings/stream", func_801BAB70);
|
||||
|
||||
INCLUDE_ASM("st/sel/nonmatchings/stream", DecDCTvlc);
|
||||
|
Loading…
Reference in New Issue
Block a user