diff options
author | Robert Keevil <rkeevil+rockbox@gmail.com> | 2009-07-13 21:09:39 +0000 |
---|---|---|
committer | Robert Keevil <rkeevil+rockbox@gmail.com> | 2009-07-13 21:09:39 +0000 |
commit | eea149bd1399e749a6dae8b3a6fe5ff076ead985 (patch) | |
tree | a131998421757859c25c567c657223ece0430c31 /firmware/export/pp6100.h | |
parent | 5f6998bde9b8a7a7aa61df602202ff41feb13ea1 (diff) | |
download | rockbox-eea149bd1399e749a6dae8b3a6fe5ff076ead985.tar.gz rockbox-eea149bd1399e749a6dae8b3a6fe5ff076ead985.tar.bz2 rockbox-eea149bd1399e749a6dae8b3a6fe5ff076ead985.zip |
FS#10436 - add the Sansa View to the build system. The bootloader builds but doesn't do anything useful yet.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21848 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/pp6100.h')
-rw-r--r-- | firmware/export/pp6100.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/firmware/export/pp6100.h b/firmware/export/pp6100.h new file mode 100644 index 0000000000..0894affdd2 --- /dev/null +++ b/firmware/export/pp6100.h @@ -0,0 +1,31 @@ +#ifndef __PP6100_H__ +#define __PP6100_H__ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2009 by Robert Keevil + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + +/* We believe this is quite similar to the 5020 and for now we just use that + completely and redefine any minor differences */ +#include "pp5020.h" + +#undef DRAM_START +#define DRAM_START 0x10f00000 + +#endif |