diff options
author | wdenk <wdenk> | 2004-04-18 21:13:41 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-04-18 21:13:41 +0000 |
commit | 507bbe3e8084a82c20399367801da87db7d14e65 (patch) | |
tree | 0660633e2e1caf4b819fd46ed43f83e3e05c5523 /examples/Makefile | |
parent | 998eaaecd46ee5f00550e30e606cb5556e0b9345 (diff) |
* Patch by Yasushi Shoji, 07 Apr 2004:
- add support for microblaze processors
- add support for AtmarkTechno "suzaku" board
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile index 6bd10b52874..f6b127bfed4 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -45,6 +45,10 @@ ifeq ($(ARCH),m68k) LOAD_ADDR = 0x20000 -L $(clibdir) endif +ifeq ($(ARCH),microblaze) +LOAD_ADDR = 0x80F00000 +endif + include $(TOPDIR)/config.mk SREC = hello_world.srec |