From: darcagn <da...@us...> - 2024-05-21 13:32:40
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via e0b462e01dfe24cd573fd63c705d8e1300ec7cba (commit) via e53988facb6269cbb09d3c5c1bdd4c9ef35beef9 (commit) from e21c5e1e96f4a075d7e006f5c0976ccbca26d858 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e0b462e01dfe24cd573fd63c705d8e1300ec7cba Author: Paul Cercueil <pa...@cr...> Date: Tue May 21 15:31:51 2024 +0200 dc/vmu_fb.h: Add missing header guards (#584) Signed-off-by: Paul Cercueil <pa...@cr...> commit e53988facb6269cbb09d3c5c1bdd4c9ef35beef9 Author: Andy Barajas <and...@gm...> Date: Sat May 18 23:16:21 2024 -0700 Add KOS_OBJDUMP (#582) ----------------------------------------------------------------------- Summary of changes: environ_base.sh | 1 + kernel/arch/dreamcast/include/dc/vmu_fb.h | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/environ_base.sh b/environ_base.sh index f215f98e..ada69c13 100644 --- a/environ_base.sh +++ b/environ_base.sh @@ -32,6 +32,7 @@ export KOS_CCPLUS="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-g++" export KOS_AS="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-as" export KOS_AR="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-gcc-ar" export KOS_OBJCOPY="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-objcopy" +export KOS_OBJDUMP="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-objdump" export KOS_LD="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-ld" export KOS_RANLIB="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-gcc-ranlib" export KOS_STRIP="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-strip" diff --git a/kernel/arch/dreamcast/include/dc/vmu_fb.h b/kernel/arch/dreamcast/include/dc/vmu_fb.h index 322a5a5f..8f440ca7 100644 --- a/kernel/arch/dreamcast/include/dc/vmu_fb.h +++ b/kernel/arch/dreamcast/include/dc/vmu_fb.h @@ -5,6 +5,9 @@ */ +#ifndef __DC_VMU_FB_H +#define __DC_VMU_FB_H + /** \file dc/vmu_fb.h \brief VMU framebuffer. \ingroup vmu @@ -132,3 +135,5 @@ static __inline__ void vmufb_print_string(vmufb_t *fb, const vmufb_font_t *font, const char *str) { vmufb_print_string_into(fb, font, 0, 0, 48, 32, 0, str); } + +#endif /* __DC_VMU_FB_H */ hooks/post-receive -- A pseudo Operating System for the Dreamcast. |