mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
pacbox_cf.S contains a h300-only function, AND a function for all CF
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27889 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
0bdf53d9a1
commit
6b85f18b64
2 changed files with 10 additions and 3 deletions
|
@ -6,8 +6,11 @@ wsg3.c
|
||||||
|
|
||||||
#if defined(CPU_PP502x) && (LCD_WIDTH >= 288) && (LCD_HEIGHT >= 224)
|
#if defined(CPU_PP502x) && (LCD_WIDTH >= 288) && (LCD_HEIGHT >= 224)
|
||||||
pacbox_arm.S
|
pacbox_arm.S
|
||||||
#elif defined(CPU_COLDFIRE)
|
#elif (CONFIG_PLATFORM & PLATFORM_HOSTED) || !defined(IRIVER_H300_SERIES)
|
||||||
pacbox_cf.S
|
|
||||||
#else
|
|
||||||
pacbox_lcd.c
|
pacbox_lcd.c
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CPU_COLDFIRE)
|
||||||
|
/* contains cf-specific functions, AND pacbox_lcd.c replacement for h300 only */
|
||||||
|
pacbox_cf.S
|
||||||
|
#endif
|
||||||
|
|
|
@ -25,6 +25,8 @@
|
||||||
.align 2
|
.align 2
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef IRIVER_H300_SERIES
|
||||||
|
|
||||||
.global blit_display
|
.global blit_display
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -136,6 +138,8 @@ bd_y_loop:
|
||||||
lea.l BD_SAVE(%sp), %sp
|
lea.l BD_SAVE(%sp), %sp
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
#endif /* IRIVER_H300_SERIES */
|
||||||
|
|
||||||
|
|
||||||
/* See arcade.c for the C implementation of drawChar */
|
/* See arcade.c for the C implementation of drawChar */
|
||||||
/* Note! This version does not handle flipped screen mode. */
|
/* Note! This version does not handle flipped screen mode. */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue