Copyright (c) 1993, 1994, 1995 Cygnus Support
Permission is granted to make and distribute verbatim copies ofthis manual provided the copyright notice and this permission noticeare preserved on all copies.
Permission is granted to copy and distribute modified versions of thismanual under the conditions for verbatim copying, provided also thatthe entire resulting derived work is distributed under the terms of apermission notice identical to this one.
Permission is granted to copy and distribute translations of this manualinto another language, under the above conditions for modified versions.
Rough Draft
The goal of this document is to gather all the information needed toport the GNU tools to a new embedded target in one place. This willduplicate some info found in the other manual for the GNU tools, butthis should be all you’ll need.
Next: Porting GCC, Previous: Embed with GNU, Up: Embed with GNU [Contents]
Libgloss is a library for all the details that usually get glossed over.This library refers to things like startup code, and usually I/O supportfor gcc and C library. The C library used through outthis manual is newlib. Newlib is a ANSI conforming C librarydeveloped by Cygnus Support. Libgloss could easily be made tosupport other C libraries, and it can be used standalone as well. Thestandalone configuration is typically used when bringing up newhardware, or on small systems. 
For a long time, these details were part of newlib. This approach workedwell when a complete tool chain only had to support one system. A toolchain refers to the series of compiler passes required to produce abinary file that will run on an embedded system. For C, the passes arecpp, gcc, gas, ld. Cpp is the preprocessor, which process all the headerfiles and macros. Gcc is the compiler, which produces assembler from theprocessed C files. Gas assembles the code into object files, and then ldcombines the object files and binds the code to addresses and producesthe final executable image.
Most of the time a tool chain does only have to support one targetexecution environment. An example of this would be a tool chain for theAMD 29k processor family. All of the execution environments for thisprocessor have the same interface, the same memory map, and the sameI/O code. In this case all of the support code is under newlib/libc/sys.Libgloss’s creation was forced initially because of the cpu32processor family. There are many different execution environments forthis line, and they vary wildly. newlib itself has only a fewdependencies that it needs for each target. These are explained later inthis doc. The hardware dependent part of newlib was reorganized into aseparate directory structure within newlib called the stub dirs. It wasinitially called this because most of the routines newlib needs for atarget were simple stubs that do nothing, but return a value to theapplication. They only exist so the linker can produce a finalexecutable image. This work was done during the early part of 1993.
After a while it became apparent that this approach of isolating thehardware and systems files together made sense. Around this same timethe stub dirs were made to run standalone, mostly so it could also beused to support GDB’s remote debugging needs. At this time it wasdecided to move the stub dirs out of newlib and into it’s own separatelibrary so it could be used standalone, and be included in various otherGNU tools without having to bring in all of newlib, which is large. Thenew library is called Libgloss, for Gnu Low-level OS support.
Next: Configuring and building libgloss., Previous: Libgloss, Up: Libgloss [Contents]
Currently libgloss is being used for the following targets:
Next: Motorola CPU32 Targets supported, Up: Supported Targets [Contents]
This is for the Fujitsu Sparclite family of processors. Currently thiscovers the ex930, ex931, ex932, ex933, and the ex934. In addition to theI/O code a startup file, this has a GDB debug-stub that gets linked intoyour application. This is an exception handler style debug stub. Formore info, see the section on Porting GDB. Porting GDB.
The Fujitsu eval boards use a host based terminal program to load andexecute programs on the target. This program, pciuh is relativelynew (in 1994) and it replaced the previous ROM monitor which had theshell in the ROM. GDB uses the the GDB remote protocol, the relevantsource files from the gdb sources are remote-sparcl.c. The debug stub ispart of libgloss and is called sparcl-stub.c.
Next: Mips core Targets Supported, Previous: Sparclite Targets Supported, Up: Supported Targets [Contents]
This refers to Motorola’s m68k based CPU32 processor family. The crt0.Sstartup file should be usable with any target environment, and it’smostly just the I/O code and linker scripts that vary. Currently thereis support for the Motorola MVME line of 6U VME boards and IDPline of eval boards. All of theMotorola VME boards run Bug, a ROM based debug monitor.This monitor has the feature of using user level traps to do I/O, sothis code should be portable to other MVME boards with little if anychange. The startup file also can remain unchanged. About the only thingthat varies is the address for where the text section begins. This canbe accomplished either in the linker script, or on the command lineusing the ‘-Ttext [address]’.
There is also support for the rom68k monitor as shipped onMotorola’s IDP eval board line. This code should be portable across therange of CPU’s the board supports. There is also GDB support for thistarget environment in the GDB source tree. The relevant files aregdb/monitor.c, monitor.h, and rom58k-rom.c. The usage of these files isdiscussed in the GDB section.
Next: PA-RISC Targets Supported, Previous: Motorola CPU32 Targets supported, Up: Supported Targets [Contents]
The Crt0 startup file should run on any mips target that doesn’t requireadditional hardware initialization. The I/O code so far only supports acustom LSI33k based RAID disk controller board. It should easy tochange to support the IDT line of eval boards. Currently the twodebugging protocols supported by GDB for mips targets is IDT’s mipsdebug protocol, and a customized hybrid of the standard GDB remoteprotocol and GDB’s standard ROM monitor support. Included here is thedebug stub for the hybrid monitor. This supports the LSI33k processor,and only has support for the GDB protocol commands g, G,m, M, which basically only supports the register andmemory reading and writing commands. This is part of libgloss and iscalled lsi33k-stub.c.
The crt0.S should also work on the IDT line of eval boards, but has onlybeen run on the LSI33k for now. There is no I/O support for the IDT evalboard at this time. The current I/O code is for a customized version ofLSI’s pmon ROM monitor. This uses entry points into the monitor,and should easily port to other versions of the pmon monitor. Pmon isdistributed in source by LSI.
Previous: Mips core Targets Supported, Up: Supported Targets [Contents]
This supports the various boards manufactured by the HP-PRO consortium.This is a group of companies all making variations on the PA-RISCprocessor. Currently supported are ports to the WinBond ‘Cougar’board based around their w89k version of the PA. Also supported is theOki op50n processor.
There is also included, but never built an unfinished port to the HP 743board. This board is the main CPU board for the HP700 line of industrialcomputers. This target isn’t exactly an embedded system, in fact it’sreally only designed to load and run HP-UX. Still, the crt0.S and I/Ocode are fully working. It is included mostly because their is a barelyfunctioning exception handler GDB debug stub, and I hope somebody coulduse it. The other PRO targets all use GDB’s ability to talk to ROMmonitors directly, so it doesn’t need a debug stub. There is also autility that will produce a bootable file by HP’s ROM monitor. This isall included in the hopes somebody else will finish it. :-)
Both the WinBond board and the Oki board download srecords. The WinBondboard also has support for loading the SOM files as produced by thenative compiler on HP-UX. WinBond supplies a set of DOS programs thatwill allow the loading of files via a bidirectional parallel port. Thishas never been tested with the output of GNU SOM, as this manual ismostly for Unix based systems.
Next: Adding Support for a New Board, Previous: Supported Targets, Up: Libgloss [Contents]
Libgloss uses an autoconf based script to configure. Autoconf scriptsare portable shell scripts that are generated from a configure.in file.Configure input scripts are based themselves on m4. Most configurescripts run a series of tests to determine features the varioussupported features of the target. For features that can’t be determinedby a feature test, a makefile fragment is merged in. The configureprocess leaves creates a Makefile in the build directory. For libgloss,there are only a few configure options of importance. These are –targetand –srcdir.
Typically libgloss is built in a separate tree just for objects. In thismanner, it’s possible to have a single source tree, and multiple objecttrees. If you only need to configure for a single target environment,then you can configure in the source tree. The argument for –target isa config string. It’s usually safest to use the full canonical opposedto the target alias. So, to configure for a CPU32 (m68k) with a separatesource tree, use:
../src/libgloss/configure --verbose --target m68k-coff
The configure script is in the source tree. When configure is invokedit will determine it’s own source tree, so the –srcdir is would beredundant here.
Once libgloss is configured, make is sufficient to build it. Thedefault values for Makefiles are typically correct for allsupported systems. The test cases in the testsuite will also builtautomatically as opposed to a make check, where test binariesaren’t built till test time. This is mostly cause the libglosstestsuites are the last thing built when building the entire GNU sourcetree, so it’s a good test of all the other compilation passes.
The default values for the Makefiles are set in the Makefile fragmentmerged in during configuration. This fragment typically has rules like
CC_FOR_TARGET = `if [ -f $${OBJROOT}/gcc/xgcc ] ; \	then echo ${OBJROOT}/gcc/xgcc -B${OBJROOT}/gcc/ ; \	else t='${program_transform_name}'; echo gcc | sed -e '' $$t ; fi`Basically this is a runtime test to determine whether there are freshlybuilt executables for the other main passes of the GNU tools. If thereisn’t an executable built in the same object tree, thentransformedthe generic tool name (like gcc) is transformed to thename typically used in GNU cross compilers. The names aretypically based on the target’s canonical name, so if you’ve configuredfor m68k-coff the transformed name is m68k-coff-gcc inthis case. If you install with aliases or rename the tools, this won’twork, and it will always look for tools in the path. You can force the adifferent name to work by reconfiguring with the--program-transform-name option to configure. This option takes ased script like this -e s,^,m68k-coff-, which produces toolsusing the standard names (at least here at Cygnus). 
The search for the other GNU development tools is exactly the same idea.This technique gets messier when build options like -msoft-floatsupport are used. The Makefile fragments set the MUTILIBvariable, and if it is set, the search path is modified. If the linkingis done with an installed cross compiler, then none of this needs to beused. This is done so libgloss will build automatically with a fresh,and uninstalled object tree. It also makes it easier to debug the othertools using libgloss’s test suites.
Previous: Configuring and building libgloss., Up: Libgloss [Contents]
This section explains how to add support for a new board to libgloss.In order to add support for a board, you must already have developed atoolchain for the target architecture.
All of the changes you will make will be in the subdirectory namedafter the architecture used by your board. For example, if you aredeveloping support for a new ColdFire board, you will modify files inthe m68k subdirectory, as that subdirectory contains supportfor all 68K devices, including architecture variants like ColdFire.
In general, you will be adding three components: a crt0.S file(see Crt0, the main startup file), a linker script (see Linker scripts for memory management), and ahardware support library. Each should be prefixed with the name ofyour board. For example, if you ard adding support for a new Surfboard, then you will be adding the assembly surf-crt0.S (whichwill be assembled into surf-crt0.o), the linker scriptsurf.ld, and other C and assembly files which will be combinedinto the hardware support library libsurf.a.
You should modify Makefile.in to define new variablescorresponding to your board. Although there is some variation betweenarchitectures, the general convention is to use the following format:
# The name of the crt0.o file.SURF_CRT0 = surf-crt0.o# The name of the linker script.SURF_SCRIPTS = surf.ld# The name of the hardware support library.SURF_BSP = libsurf.a# The object files that make up the hardware support library.SURF_OBJS = surf-file1.o surf-file2.o# The name of the Makefile target to use for installation.SURF_INSTALL = install-surf
Then, you should create the ${SURF_BSP} and${SURF_INSTALL} make targets. Add ${SURF_CRT0} tothe dependencies for the all target and add${SURF_INSTALL} to the dependencies for the installtarget. Now, when libgloss is built and installed, support for yourBSP will be installed as well.
Next: Porting newlib, Previous: Libgloss, Up: Embed with GNU [Contents]
Porting GCC requires two things, neither of which has anything to dowith GCC. If GCC already supports a processor type, then all the work inporting GCC is really a linker issue. All GCC has to do is produceassembler output in the proper syntax. Most of the work is done by thelinker, which is described elsewhere.
Mostly all GCC does is format the command line for the linker pass. Thecommand line for GCC is set in the various config subdirectories of gcc.The options of interest to us are CPP_SPEC andSTARTFILE_SPEC. CPP_SPEC sets the builtin defines for yourenvironment. If you support multiple environments with the sameprocessor, then OS specific defines will need to be elsewhere. 
STARTFILE_SPEC
Once you have linker support, GCC will be able to produce a fully linkedexecutable image. The only part of GCC that the linker wants is acrt0.o, and a memory map. If you plan on running any programs that doI/O of any kind, you’ll need to write support for the C library, whichis described elsewhere.
Next: Options, Up: Porting GCC [Contents]
GCC by itself only compiles the C or C++ code into assembler. TypicallyGCC invokes all the passes required for you. These passes are cpp, cc1,gas, ld. cpp is the C preprocessor. This will merge in theinclude files, expand all macros definitions, and process all the#ifdef sections. To see the output of ccp, invoke gcc with the-E option, and the preprocessed file will be printed on thestdout. cc1 is the actual compiler pass that produces the assembler forthe processed file. GCC is actually only a driver program for all thecompiler passes. It will format command line options for the other passes.The usual command line GCC uses for the final link phase will have LDlink in the startup code and additional libraries by default.
GNU AS started it’s life to only function as a compiler pass, butthese days it can also be used as a source level assembler. When used asa source level assembler, it has a companion assembler preprocessorcalled gasp. This has a syntax similar to most other assemblermacros packages. GAS emits a relocatable object file from the assemblersource. The object file contains the executable part of the application,and debug symbols.
LD is responsible for resolving the addresses and symbols to somethingthat will be fully self-contained. Some RTOS’s use relocatable objectfile formats like a.out, but more commonly the final image willonly use absolute addresses for symbols. This enables code to be burnedinto PROMS as well. Although LD can produce an executable image, thereis usually a hidden object file called crt0.o that is required asstartup code. With this startup code and a memory map, the executableimage will actually run on the target environment. StartupFiles.
The startup code usually defines a special symbol like _startthat is the default base address for the application, and the firstsymbol in the executable image. If you plan to use any routines from thestandard C library, you’ll also need to implement the functions thatthis library is dependent on. Porting Newlib.
Previous: Compilation passes, Up: Porting GCC [Contents]
Options for the various development tools are covered in more detailelsewhere. Still, the amount of options can be an overwhelming amount ofstuff, so the options most suited to embedded systems are summarizedhere. If you use GCC as the main driver for all the passes, most of thelinker options can be passed directly to the compiler. There are alsoGCC options that control how the GCC driver formats the command linearguments for the linker.
Next: GAS Options, Up: Options [Contents]
Most of the GCC options that we’re interested control how the GCC driverformats the options for the linker pass.
-nostartfiles-nostdlib-XlinkerPass the next option directly to the linker.
-v-fpicNext: LD Options, Previous: GCC Options, Up: Options [Contents]
Previous: GAS Options, Up: Options [Contents]
Next: Writing a new GDB backend, Previous: Porting GCC, Up: Embed with GNU [Contents]
Next: Linker scripts for memory management, Up: Porting newlib [Contents]
To make a program that has been compiled with GCC to run, youneed to write some startup code. The initial piece of startup code iscalled a crt0. (C RunTime 0) This is usually written in assembler, andit’s object gets linked in first, and bootstraps the rest of theapplication when executed. This file needs to do the following things.
If you plan to burn your code in a ROM, then the crt0 typically has todo all the hardware initialization that is required to run anapplication. This can include things like initializing serial ports orrun a memory check. It all depends on the hardware.
When there is a ROM monitor present, usually a user trap can be calledand then the ROM takes over. Pick a safe vector with no sideeffects. Some ROMs have a builtin trap handler just for this case.
portable between all the m68k based boards we have here.Example Crt0.S.
/* ANSI concatenation macros. */#define CONCAT1(a, b) CONCAT2(a, b)#define CONCAT2(a, b) a ## b
These we’ll use later.
/* These are predefined by new versions of GNU cpp. */#ifndef __USER_LABEL_PREFIX__#define __USER_LABEL_PREFIX__ _#endif/* Use the right prefix for global labels. */#define SYM(x) CONCAT1 (__USER_LABEL_PREFIX__, x)
These macros are to make this code portable between both COFF anda.out. COFF always has an _ (underline) prepended onthe front of all global symbol names. a.out has none.
#ifndef __REGISTER_PREFIX__#define __REGISTER_PREFIX__#endif/* Use the right prefix for registers. */#define REG(x) CONCAT1 (__REGISTER_PREFIX__, x)#define d0 REG (d0)#define d1 REG (d1)#define d2 REG (d2)#define d3 REG (d3)#define d4 REG (d4)#define d5 REG (d5)#define d6 REG (d6)#define d7 REG (d7)#define a0 REG (a0)#define a1 REG (a1)#define a2 REG (a2)#define a3 REG (a3)#define a4 REG (a4)#define a5 REG (a5)#define a6 REG (a6)#define fp REG (fp)#define sp REG (sp)
This is for portability between assemblers. Some register names have a% or $ prepended to the register name.
/* * Set up some room for a stack. We just grab a chunk of memory. */ .set stack_size, 0x2000 .comm SYM (stack), stack_size
Set up space for the stack. This can also be done in the linker script,but it typically gets done here.
/* * Define an empty environment. */ .data .align 2SYM (environ): .long 0
Set up an empty space for the environment. This is bogus on any most ROMmonitor, but we setup a valid address for it, and pass it to main. Atleast that way if an application checks for it, it won’t crash.
.align 2 .text .global SYM (stack) .global SYM (main) .global SYM (exit)/* * This really should be __bss_start, not SYM (__bss_start). */ .global __bss_start
Setup a few global symbols that get used elsewhere. __bss_startneeds to be unchanged, as it’s setup by the linker script.
/* * start -- set things up so the application will run. */SYM (start): link a6, #-8 moveal #SYM (stack) + stack_size, sp/* * zerobss -- zero out the bss section */ moveal #__bss_start, a0 moveal #SYM (end), a11: movel #0, (a0) leal 4(a0), a0 cmpal a0, a1 bne 1b
The global symbol start is used by the linker as the defaultaddress to use for the .text section. then it zeros the.bss section so the uninitialized data will all be cleared. Someprograms have wild side effects from having the .bss section letuncleared. Particularly it causes problems with some implementations ofmalloc. 
/* * Call the main routine from the application to get it going. * main (argc, argv, environ) * We pass argv as a pointer to NULL. */ pea 0 pea SYM (environ) pea sp@(4) pea 0 jsr SYM (main) movel d0, sp@-
Setup the environment pointer and jump to main(). Whenmain() returns, it drops down to the exit routine below.
/* * _exit -- Exit from the application. Normally we cause a user trap * to return to the ROM monitor for another run. */SYM (exit): trap #0
Implementing exit here is easy. Both the rom68k and bugcan handle a user caused exception of zero with no side effects.Although the bug monitor has a user caused trap that will returncontrol to the ROM monitor, this solution has been more portable.
Next: What to do when you have a binary image, Previous: Crt0, the main startup file, Up: Porting newlib [Contents]
The linker script sets up the memory map of an application. It alsosets up default values for variables used elsewhere by sbrk() and thecrt0. These default variables are typically called _bss_start and_end.
For G++, the constructor and destructor tables must also be setup here.The actual section names vary depending on the object file format. Fora.out and coff, the three main sections are .text,.data, and .bss.
Now that you have an image, you can test to make sure it got thememory map right. You can do this by having the linker create a memorymap (by using the -Map option), or afterwards by using nm tocheck a few critical addresses like start, bss_end, and_etext.
Here’s a breakdown of a linker script for a m68k based target board.See the file libgloss/m68k/idp.ld, or go to the appendixes inthe end of the manual. Example Linker Script. 
STARTUP(crt0.o)OUTPUT_ARCH(m68k)INPUT(idp.o)SEARCH_DIR(.)__DYNAMIC = 0;
The STARTUP command loads the file specified so that it’sfirst. In this case it also doubles to load the file as well, becausethe m68k-coff configuration defaults to not linking in the crt0.o bydefault. It assumes that the developer probably has their own crt0.o.This behavior is controlled in the config file for each architecture.It’s a macro called STARTFILE_SPEC, and if it’s set tonull, then when gcc formats it’s command line, it doesn’tadd crto.o. Any file name can be specified here, but the defaultis always crt0.o.
Course if you only use ld to link, then the control of whether ornot to link in crt0.o is done on the command line. If you havemultiple crto files, then you can leave this out all together, and linkin the crt0.o in the makefile, or by having different linkerscripts. Sometimes this is done for initializing floating pointoptionally, or to add device support.
The OUTPUT_ARCH sets architecture the output file is for.
INPUT loads in the file specified. In this case, it’s a relocatedlibrary that contains the definitions for the low-level functions needby libc.a. This could have also been specified on the command line, butas it’s always needed, it might as well be here as a default.SEARCH_DIR specifies the path to look for files, and_DYNAMIC means in this case there are no shared libraries. 
/* * Setup the memory map of the MC68ec0x0 Board (IDP) * stack grows up towards high memory. This works for * both the rom68k and the mon68k monitors. */MEMORY{ ram : ORIGIN = 0x10000, LENGTH = 2M}This specifies a name for a section that can be referred to later in thescript. In this case, it’s only a pointer to the beginning of free RAMspace, with an upper limit at 2M. If the output file exceeds the upperlimit, it will produce an error message.
/* * stick everything in ram (of course) */SECTIONS{ .text : { CREATE_OBJECT_SYMBOLS *(.text) etext = .; __CTOR_LIST__ = .; LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2) *(.ctors) LONG(0) __CTOR_END__ = .; __DTOR_LIST__ = .; LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2) *(.dtors) LONG(0) __DTOR_END__ = .; *(.lit) *(.shdata) } > ram .shbss SIZEOF(.text) + ADDR(.text) :	{ *(.shbss) }Set up the .text section. In a COFF file, .text is whereall the actual instructions are. This also sets up the CONTRUCTORand the DESTRUCTOR tables for G++. Notice that the sectiondescription redirects itself to the ram variable setup earlier.
 .talias : { } > ram .data : { *(.data) CONSTRUCTORS _edata = .; } > ramSetup the .data section. In a coff file, this is where allhe initialized data goes. CONSTRUCTORS is a special command usedby ld.
 .bss SIZEOF(.data) + ADDR(.data) : { __bss_start = ALIGN(0x8); *(.bss) *(COMMON) end = ALIGN(0x8); _end = ALIGN(0x8); __end = ALIGN(0x8); } .mstack : { } > ram .rstack : { } > ram .stab . (NOLOAD) : { [ .stab ] } .stabstr . (NOLOAD) : { [ .stabstr ] }}Setup the .bss section. In a COFF file, this is whereunitialized data goes. The symbols _bss_start and _endare setup here for use by the crt0.o when it zero’s the.bss section. 
Next: Libraries, Previous: Linker scripts for memory management, Up: Porting newlib [Contents]
A few ROM monitors load binary images, typically a.out, but most allwill load an srecord. An srecord is an ASCII representation of a binaryimage. At it’s simplest, an srecord is an address, followed by a bytecount, followed by the bytes, and a 2’s compliment checksum. A wholesrecord file has an optional start record, and a required endrecord. To make an srecord from a binary image, the GNU objcopy programis used. This will read the image and make an srecord from it. To dothis, invoke objcopy like this: objcopy -O srec infile outfile. MostPROM burners also read srecords or a similar format. Use objdump -i toget a list of support object files types for your architecture. 
Previous: What to do when you have a binary image, Up: Porting newlib [Contents]
This describes newlib, a freely available libc replacement. Mostapplications use calls in the standard C library. When initially linkingin libc.a, several I/O functions are undefined. If you don’t plan ondoing any I/O, then you’re OK, otherwise they need to be created. Theseroutines are read, write, open, close. sbrk, and kill. Open & closedon’t need to be fully supported unless you have a filesystems, sotypically they are stubbed out. Kill is also a stub, since you can’t doprocess control on an embedded system. 
Sbrk() is only needed by applications that do dynamic memoryallocation. It’s uses the symbol _end that is setup in the linkerscript. It also requires a compile time option to set the upper sizelimit on the heap space. This leaves us with read and write, which arerequired for serial I/O. Usually these two routines are written in C,and call a lower level function for the actual I/O operation. These twolowest level I/O primitives are inbyte() and outbyte(), and are alsoused by GDB back ends if you’ve written an exception handler. Somesystems also implement a havebyte() for input as well. 
Other commonly included functions are routines for manipulatingLED’s on the target (if they exist) or low level debug help. Typically aputnum() for printing words and bytes as a hex number is helpful, aswell as a low-level print() to output simple strings.
As libg++ uses the I/O routines in libc.a, if read and write work,then libg++ will also work with no additional changes.
Next: Misc support routines, Previous: Making I/O work, Up: Libraries [Contents]
To support using any of the memory functions, you need to implementsbrk(). malloc(), calloc(), and realloc() all callsbrk() at there lowest level. caddr_t is defined elsewhereas char *. RAMSIZE is presently a compile time option. Allthis does is move a pointer to heap memory and check for the upperlimit. Example libc support code. sbrk() returns apointer to the previous value before more memory was allocated.
/* _end is set in the linker command file *extern caddr_t _end;//* just in case, most boards have at least some memory */#ifndef RAMSIZE# define RAMSIZE (caddr_t)0x100000#endif/* * sbrk -- changes heap size size. Get nbytes more * RAM. We just increment a pointer in what's * left of memory on the board. */caddr_tsbrk(nbytes) int nbytes;{ static caddr_t heap_ptr = NULL; caddr_t base; if (heap_ptr == NULL) { heap_ptr = (caddr_t)&_end; } if ((RAMSIZE - heap_ptr) >= 0) { base = heap_ptr; heap_ptr += nbytes; return (base); } else { errno = ENOMEM; return ((caddr_t)-1); }}Next: Useful debugging functions, Previous: Routines for dynamic memory allocation, Up: Libraries [Contents]
These are called by newlib but don’t apply to the embeddedenvironment. isatty() is self explanatory. kill() doesn’tapply either in an environment withno process control, so it justsexits, which is a similar enough behavior. getpid() can safelyreturn any value greater than 1. The value doesn’t effect anything innewlib because once again there is no process control.
/* * isatty -- returns 1 if connected to a terminal device, * returns 0 if not. Since we're hooked up to a * serial port, we'll say yes and return a 1. */intisatty(fd) int fd;{ return (1);}/* * getpid -- only one process, so just return 1. */#define __MYPID 1intgetpid(){ return __MYPID;}/* * kill -- go out via exit... */intkill(pid, sig) int pid; int sig;{ if(pid == __MYPID) _exit(sig); return 0;}Previous: Misc support routines, Up: Libraries [Contents]
There are always a few useful functions for debugging your project inprogress. I typically implement a simple print() routine thatruns standalone in liblgoss, with no newlib support. The I/Ofunction outbyte() can also be used for low level debugging. Manytimes print will work when there are problems that cause printf() tocause an exception. putnum() is just to print out values in hexso they are easier to read.
/* * print -- do a raw print of a string */intprint(ptr)char *ptr;{ while (*ptr) { outbyte (*ptr++); }}/* * putnum -- print a 32 bit number in hex */intputnum (num)unsigned int num;{ char buffer[9]; int count; char *bufptr = buffer; int digit; for (count = 7 ; count >= 0 ; count--) { digit = (num >> (count * 4)) & 0xf; if (digit <= 9) *bufptr++ = (char) ('0' + digit); else *bufptr++ = (char) ('a' - 10 + digit); } *bufptr = (char) 0; print (buffer); return;}If there are LEDs on the board, they can also be put to use fordebugging when the serial I/O code is being written. I usually implementa zylons() function, which strobes the LEDS (if there is morethan one) in sequence, creating a rotating effect. This is convenientbetween I/O to see if the target is still alive. Another useful LEDfunction is led_putnum(), which takes a digit and displays it asa bit pattern or number. These usually have to be written in assemblerfor each target board. Here are a number of C based routines that may beuseful.
led_putnum() puts a number on a single digit segmentedLED display. This LED is set by setting a bit mask to an address, where1 turns the segment off, and 0 turns it on. There is also a littledecimal point on the LED display, so it gets the leftmost bit. The otherbits specify the segment location. The bits look like:
[d.p | g | f | e | d | c | b | a ] is the byte.
The locations are set up as:
a ----- f | | b | g | ----- | | e | | c ----- d
This takes a number that’s already been converted to a string, andprints it.
#define LED_ADDR	0xd00003voidled_putnum ( num )char num;{ static unsigned char *leds = (unsigned char *)LED_ADDR; static unsigned char num_bits [18] = { 0xff,	/* clear all */ 0xc0, 0xf9, 0xa4, 0xb0, 0x99, 0x92, 0x82, 0xf8, 0x80, 0x98, /* numbers 0-9 */ 0x98, 0x20, 0x3, 0x27, 0x21, 0x4, 0xe	/* letters a-f */ }; if (num >= '0' && num <= '9') num = (num - '0') + 1; if (num >= 'a' && num <= 'f') num = (num - 'a') + 12; if (num == ' ') num = 0; *leds = num_bits[num];}/* * zylons -- draw a rotating pattern. NOTE: this function never returns. */voidzylons(){ unsigned char *leds	= (unsigned char *)LED_ADDR; unsigned char curled = 0xfe; while (1) { *leds = curled; curled = (curled >> 1) | (curled << 7); delay ( 200 ); }}Next: Binutils, Previous: Porting newlib, Up: Embed with GNU [Contents]
Typically, either the low-level I/O routines are used for debugging, orLEDs, if present. It is much easier to use GDb for debugging anapplication. There are several different techniques used to have GDB workremotely. Commonly more than one kind of GDB interface is used to cobera wide variety of development needs.
The most common style of GDB backend is an exception handler forbreakpoints. This is also called a gdb stub, and is requires thetwo additional lines of init code in your main() routine. The GDBstubs all use the GDB remote protocol. When the application gets abreakpoint exception, it communicates to GDB on the host.
Another common style of interfacing GDB to a target is by using anexisting ROM monitor. These break down into two main kinds, a similarprotocol to the GDB remote protocol, and an interface that uses the ROMmonitor directly. This kind has GDB simulating a human operator, and allGDB does is work as a command formatter and parser.
The standard remote protocol is a simple, packet based scheme. A debugpacket whose contents are <data> is encapsulated for transmissionin the form:
$ <data> # CSUM1 CSUM2
<data> must be ASCII alphanumeric and cannot include characters$ or #. If <data> starts with two charactersfollowed by :, then the existing stubs interpret this as asequence number. For example, the command g is used to read thevalues of the registers. So, a packet to do this would look like
$g#67
CSUM1 and CSUM2 are an ascii representation in hex of an8-bit checksum of <data>, the most significant nibble is sent first.the hex digits 0-9,a-f are used.
A simple protocol is used when communicating with the target. This ismainly to give a degree of error handling over the serial cable. Foreach packet transmitted successfully, the target responds with a+ (ACK). If there was a transmission error, then the targetresponds with a - (NAK). An error is determined when thechecksum doesn’t match the calculated checksum for that data record.Upon reciept of the ACK, GDB can then transmit the nextpacket. 
Here is a list of the main functions that need to be supported. Each datapacket is a command with a set number of bytes in the command packet.Most commands either return data, or respond with a NAK. Commandsthat don’t return data respond with an ACK. All data values areascii hex digits. Every byte needs two hex digits to represent t. Thismeans that a byte with the value ‘7’ becomes ‘07’. On a 32 bitmachine this works out to 8 characters per word. All of the bytes in aword are stored in the target byte order. When writing the host side ofthe GDB protocol, be careful of byte order, and make sure that the codewill run on both big and little endian hosts and produce the same answers.
These functions are the minimum required to make a GDB backend work. Allother commands are optional, and not supported by all GDB backends.
g’returns XXXXXXXX...
Registers are in the internal order for GDB, and the bytes in a registerare in the same order the machine uses. All values are in sequencestarting with register 0. All registers are listed in the same packet. Asample packet would look like $g#.
GXXXXXXXX...’XXXXXXXX is the value to set the register to. Registers are inthe internal order for GDB, and the bytes in a register are in the sameorder the machine uses. All values are in sequence starting withregister 0. All registers values are listed in the same packet. A samplepacket would look like $G000000001111111122222222...#
returns ACK or NAK
mAAAAAAAA,LLLL’AAAAAAAA is address, LLLL is length. A sample packet wouldlook like $m00005556,0024#. This would request 24 bytes startingat address 00005556
returns XXXXXXXX...XXXXXXXX is the memory contents. Fewer bytes than requested willbe returned if only part of the data can be read. This can be determinedby counting the values till the end of packet # is seen andcomparing that with the total count of bytes that was requested.
MAAAAAAAA,LLLL:XXXXXXXX’AAAAAAAA is the starting address, LLLL is the number ofbytes to be written, and XXXXXXXX is value to be written. Asample packet would look like$M00005556,0024:101010101111111100000000...#
returns ACK or NAK for an error. NAK is alsoreturned when only part of the data is written.
cAAAAAAAAA’AAAAAAAA is address to resume execution at. If AAAAAAAA isomitted, resume at the curent address of the pc register.
returns the same replay as last signal. There is no immediatereplay to cont until the next breakpoint is reached, and theprogram stops executing.
AA..AA is address to resumeIf AA..AA is omitted, resume at same address.
returns the same replay as last signal. There is no immediatereplay to step until the next breakpoint is reached, and theprogram stops executing.
?’This returns one of the following:
SAAWhere AA is the number of the last signal.Exceptions on the target are converted to the most similar Unix stylesignal number, like SIGSEGV. A sample response of this type wouldlook like $S05#.AA is the signal number.nn is the register number.XXXXXXXX is the register value.AA is the exit status. This is onlyapplicable for certains sorts of targets.These are used in some GDB backends, but not all.
Pnn=XXXXXXXX’Write register nn with value XXXXXXXX.
returns ACK or NAK
toggle debug flag (see 386 & 68k stubs)
reset – see sparc stub.
other’On other requests, the stub should ignore the request and send an emptyresponse $#<checksum>. This way we can extend the protocol and GDBcan tell whether the stub it is	talking to uses the old or the new.
tAA:PP,MM’Search backwards starting at address AA for a match with patternPP and mask MM. PP and MM are 4 bytes.
qXXXX’Request info about XXXX.
QXXXX=yyyy’Set value of XXXX to yyyy.
qOffsets’Get section offsets. Reply is Text=xxx;Data=yyy;Bss=zzz
Send text to stdout. The text gets display from the target side of theserial connection.
Responses can be run-length encoded to save space. A *means thatthe next character is an ASCII encoding giving a repeat count whichstands for that many repetitions of the character preceding the *.The encoding is n+29, yielding a printable character where n >=3(which is where run length encoding starts to win). You can’t use avalue of where n >126 because it’s only a two byte value. An examplewould be a 0*03 means the same thing as 0000.
Next: Using a ROM monitor as a backend, Previous: The standard remote protocol, Up: Writing a new GDB backend [Contents]
A GDB stub consists of two parts, support for the exceptionhandler, and the exception handler itself. The exception handler needsto communicate to GDB on the host whenever there is a breakpointexception. When GDB starts a program running on the target, it’s pollingthe serial port during execution looking for any debug packets. So whena breakpoint occurs, the exception handler needs to save state, and senda GDB remote protocol packet to GDB on the host. GDB takes any outputthat isn’t a debug command packet and displays it in the command window.
Support for the exception handler varies between processors, but theminimum supported functions are those needed by GDB. These are functionsto support the reading and writing of registers, the reading and writingof memory, start execution at an address, single step, and last signal.Sometimes other functions for adjusting the baud rate, or resetting thehardware are implemented.
Once GDB gets the command packet from the breakpoint, it will read a fewregisters and memory locations an then wait for the user. When the usertypes run or continue a continue command is issuedto the backend, and control returns from the breakpoint routine to theapplication.
Next: Adding support for new protocols, Previous: A linked in exception handler, Up: Writing a new GDB backend [Contents]
GDB also can mimic a human user and use a ROM monitors normal debugcommands as a backend. This consists mostly of sending and parsingASCII strings. All the ROM monitor interfaces share a common setof routines in gdb/monitor.c. This supports adding new ROMmonitor interfaces by filling in a structure with the common commandsGDB needs. GDb already supports several command ROM monitors, includingMotorola’s Bug monitor for their VME boards, and the Rom68kmonitor by Integrated Systems, Inc. for various m68k based boards. GDBalso supports the custom ROM monitors on the WinBond and Oki PA basedtargets. There is builtin support for loading files to ROM monitorsspecifically. GDB can convert a binary into an srecord and then load itas an ascii file, or using xmodem.
Previous: Using a ROM monitor as a backend, Up: Writing a new GDB backend [Contents]
Next: Code Listings, Previous: Writing a new GDB backend, Up: Embed with GNU [Contents]
Next: Linker script for the IDP board, Previous: Binutils, Up: Embed with GNU [Contents]
Next: crt0.S - The startup file, Previous: Code Listings, Up: Code Listings [Contents]
This is the linker script script that is used on the Motorola IDP board.
STARTUP(crt0.o)OUTPUT_ARCH(m68k)INPUT(idp.o)SEARCH_DIR(.)__DYNAMIC = 0;/* * Setup the memory map of the MC68ec0x0 Board (IDP) * stack grows up towards high memory. This works for * both the rom68k and the mon68k monitors. */MEMORY{ ram : ORIGIN = 0x10000, LENGTH = 2M}/* * stick everything in ram (of course) */SECTIONS{ .text : { CREATE_OBJECT_SYMBOLS *(.text) etext = .; __CTOR_LIST__ = .; LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2) *(.ctors) LONG(0) __CTOR_END__ = .; __DTOR_LIST__ = .; LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2) *(.dtors) LONG(0) __DTOR_END__ = .; *(.lit) *(.shdata) } > ram .shbss SIZEOF(.text) + ADDR(.text) :	{ *(.shbss) } .talias : { } > ram .data : { *(.data) CONSTRUCTORS _edata = .; } > ram .bss SIZEOF(.data) + ADDR(.data) : { __bss_start = ALIGN(0x8); *(.bss) *(COMMON) end = ALIGN(0x8); _end = ALIGN(0x8); __end = ALIGN(0x8); } .mstack : { } > ram .rstack : { } > ram .stab . (NOLOAD) : { [ .stab ] } .stabstr . (NOLOAD) : { [ .stabstr ] }}Next: C based "glue" code., Previous: Linker script for the IDP board, Up: Code Listings [Contents]
/* * crt0.S -- startup file for m68k-coff * */ .title "crt0.S for m68k-coff"/* These are predefined by new versions of GNU cpp. */#ifndef __USER_LABEL_PREFIX__#define __USER_LABEL_PREFIX__ _#endif#ifndef __REGISTER_PREFIX__#define __REGISTER_PREFIX__#endif/* ANSI concatenation macros. */#define CONCAT1(a, b) CONCAT2(a, b)#define CONCAT2(a, b) a ## b/* Use the right prefix for global labels. */#define SYM(x) CONCAT1 (__USER_LABEL_PREFIX__, x)/* Use the right prefix for registers. */#define REG(x) CONCAT1 (__REGISTER_PREFIX__, x)#define d0 REG (d0)#define d1 REG (d1)#define d2 REG (d2)#define d3 REG (d3)#define d4 REG (d4)#define d5 REG (d5)#define d6 REG (d6)#define d7 REG (d7)#define a0 REG (a0)#define a1 REG (a1)#define a2 REG (a2)#define a3 REG (a3)#define a4 REG (a4)#define a5 REG (a5)#define a6 REG (a6)#define fp REG (fp)#define sp REG (sp)/* * Set up some room for a stack. We just grab a chunk of memory. */ .set stack_size, 0x2000 .comm SYM (stack), stack_size/* * Define an empty environment. */ .data .align 2SYM (environ): .long 0 .align 2 .text .global SYM (stack) .global SYM (main) .global SYM (exit)/* * This really should be __bss_start, not SYM (__bss_start). */ .global __bss_start/* * start -- set things up so the application will run. */SYM (start): link a6, #-8 moveal #SYM (stack) + stack_size, sp/* * zerobss -- zero out the bss section */ moveal #__bss_start, a0 moveal #SYM (end), a11: movel #0, (a0) leal 4(a0), a0 cmpal a0, a1 bne 1b/* * Call the main routine from the application to get it going. * main (argc, argv, environ) * We pass argv as a pointer to NULL. */ pea 0 pea SYM (environ) pea sp@(4) pea 0 jsr SYM (main) movel d0, sp@-/* * _exit -- Exit from the application. Normally we cause a user trap * to return to the ROM monitor for another run. */SYM (exit): trap #0
Next: I/O assembler code sample, Previous: crt0.S - The startup file, Up: Code Listings [Contents]
/* * glue.c -- all the code to make GCC and the libraries run on * a bare target board. These should work with any * target if inbyte() and outbyte() exist. */#include <sys/types.h>#include <sys/stat.h>#include <errno.h>#ifndef NULL#define NULL 0#endif/* FIXME: this is a hack till libc builds */__main(){ return;}#undef errnoint errno;extern caddr_t _end; /* _end is set in the linker command file */extern int outbyte();extern unsigned char inbyte();extern int havebyte();/* just in case, most boards have at least some memory */#ifndef RAMSIZE# define RAMSIZE (caddr_t)0x100000#endif/* * read -- read bytes from the serial port. Ignore fd, since * we only have stdin. */intread(fd, buf, nbytes) int fd; char *buf; int nbytes;{ int i = 0; for (i = 0; i < nbytes; i++) { *(buf + i) = inbyte(); if ((*(buf + i) == '\n') || (*(buf + i) == '\r')) { (*(buf + i)) = 0; break; } } return (i);}/* * write -- write bytes to the serial port. Ignore fd, since * stdout and stderr are the same. Since we have no filesystem, * open will only return an error. */intwrite(fd, buf, nbytes) int fd; char *buf; int nbytes;{ int i; for (i = 0; i < nbytes; i++) { if (*(buf + i) == '\n') { outbyte ('\r'); } outbyte (*(buf + i)); } return (nbytes);}/* * open -- open a file descriptor. We don't have a filesystem, so * we return an error. */intopen(buf, flags, mode) char *buf; int flags; int mode;{ errno = EIO; return (-1);}/* * close -- close a file descriptor. We don't need * to do anything, but pretend we did. */intclose(fd) int fd;{ return (0);}/* * sbrk -- changes heap size size. Get nbytes more * RAM. We just increment a pointer in what's * left of memory on the board. */caddr_tsbrk(nbytes) int nbytes;{ static caddr_t heap_ptr = NULL; caddr_t base; if (heap_ptr == NULL) { heap_ptr = (caddr_t)&_end; } if ((RAMSIZE - heap_ptr) >= 0) { base = heap_ptr; heap_ptr += nbytes; return (base); } else { errno = ENOMEM; return ((caddr_t)-1); }}/* * isatty -- returns 1 if connected to a terminal device, * returns 0 if not. Since we're hooked up to a * serial port, we'll say yes and return a 1. */intisatty(fd) int fd;{ return (1);}/* * lseek -- move read/write pointer. Since a serial port * is non-seekable, we return an error. */off_tlseek(fd, offset, whence) int fd; off_t offset; int whence;{ errno = ESPIPE; return ((off_t)-1);}/* * fstat -- get status of a file. Since we have no file * system, we just return an error. */intfstat(fd, buf) int fd; struct stat *buf;{ errno = EIO; return (-1);}/* * getpid -- only one process, so just return 1. */#define __MYPID 1intgetpid(){ return __MYPID;}/* * kill -- go out via exit... */intkill(pid, sig) int pid; int sig;{ if(pid == __MYPID) _exit(sig); return 0;}/* * print -- do a raw print of a string */intprint(ptr)char *ptr;{ while (*ptr) { outbyte (*ptr++); }}/* * putnum -- print a 32 bit number in hex */intputnum (num)unsigned int num;{ char buffer[9]; int count; char *bufptr = buffer; int digit; for (count = 7 ; count >= 0 ; count--) { digit = (num >> (count * 4)) & 0xf; if (digit <= 9) *bufptr++ = (char) ('0' + digit); else *bufptr++ = (char) ('a' - 10 + digit); } *bufptr = (char) 0; print (buffer); return;}Next: I/O code sample, Previous: C based "glue" code., Up: Code Listings [Contents]
/* * mvme.S -- board support for m68k */ .title "mvme.S for m68k-coff"/* These are predefined by new versions of GNU cpp. */#ifndef __USER_LABEL_PREFIX__#define __USER_LABEL_PREFIX__ _#endif#ifndef __REGISTER_PREFIX__#define __REGISTER_PREFIX__#endif/* ANSI concatenation macros. */#define CONCAT1(a, b) CONCAT2(a, b)#define CONCAT2(a, b) a ## b/* Use the right prefix for global labels. */#define SYM(x) CONCAT1 (__USER_LABEL_PREFIX__, x)/* Use the right prefix for registers. */#define REG(x) CONCAT1 (__REGISTER_PREFIX__, x)#define d0 REG (d0)#define d1 REG (d1)#define d2 REG (d2)#define d3 REG (d3)#define d4 REG (d4)#define d5 REG (d5)#define d6 REG (d6)#define d7 REG (d7)#define a0 REG (a0)#define a1 REG (a1)#define a2 REG (a2)#define a3 REG (a3)#define a4 REG (a4)#define a5 REG (a5)#define a6 REG (a6)#define fp REG (fp)#define sp REG (sp)#define vbr REG (vbr) .align 2 .text .global SYM (_exit) .global SYM (outln) .global SYM (outbyte) .global SYM (putDebugChar) .global SYM (inbyte) .global SYM (getDebugChar) .global SYM (havebyte) .global SYM (exceptionHandler) .set vbr_size, 0x400 .comm SYM (vbr_table), vbr_size/* * inbyte -- get a byte from the serial port * d0 - contains the byte read in */ .align 2SYM (getDebugChar): /* symbol name used by m68k-stub */SYM (inbyte): link a6, #-8 trap #15 .word inchr moveb sp@, d0 extbl d0 unlk a6 rts/* * outbyte -- sends a byte out the serial port * d0 - contains the byte to be sent */ .align 2SYM (putDebugChar): /* symbol name used by m68k-stub */SYM (outbyte): link fp, #-4 moveb fp@(11), sp@ trap #15 .word outchr unlk fp rts/* * outln -- sends a string of bytes out the serial port with a CR/LF * a0 - contains the address of the string's first byte * a1 - contains the address of the string's last byte */ .align 2SYM (outln): link a6, #-8 moveml a0/a1, sp@ trap #15 .word outln unlk a6 rts/* * outstr -- sends a string of bytes out the serial port without a CR/LF * a0 - contains the address of the string's first byte * a1 - contains the address of the string's last byte */ .align 2SYM (outstr): link a6, #-8 moveml a0/a1, sp@ trap #15 .word outstr unlk a6 rts/* * havebyte -- checks to see if there is a byte in the serial port, * returns 1 if there is a byte, 0 otherwise. */SYM (havebyte): trap #15 .word instat beqs empty movel #1, d0 rtsempty: movel #0, d0 rts/* * These constants are for the MVME-135 board's boot monitor. They * are used with a TRAP #15 call to access the monitor's I/O routines. * they must be in the word following the trap call. */ .set inchr, 0x0 .set instat, 0x1 .set inln, 0x2 .set readstr, 0x3 .set readln, 0x4 .set chkbrk, 0x5 .set outchr, 0x20 .set outstr, 0x21 .set outln, 0x22 .set write, 0x23 .set writeln, 0x24 .set writdln, 0x25 .set pcrlf, 0x26 .set eraseln, 0x27 .set writd, 0x28 .set sndbrk, 0x29 .set tm_ini, 0x40 .set dt_ini, 0x42 .set tm_disp, 0x43 .set tm_rd, 0x44 .set redir, 0x60 .set redir_i, 0x61 .set redir_o, 0x62 .set return, 0x63 .set bindec, 0x64 .set changev, 0x67 .set strcmp, 0x68 .set mulu32, 0x69 .set divu32, 0x6A .set chk_sum, 0x6B
Next: Led control sample, Previous: I/O assembler code sample, Up: Code Listings [Contents]
#include "w89k.h"/* * outbyte -- shove a byte out the serial port. We wait till the byte */intoutbyte(byte) unsigned char byte;{ while ((inp(RS232REG) & TRANSMIT) == 0x0) { } ; return (outp(RS232PORT, byte));}/* * inbyte -- get a byte from the serial port */unsigned charinbyte(){ while ((inp(RS232REG) & RECEIVE) == 0x0) { }; return (inp(RS232PORT));}Previous: I/O code sample, Up: Code Listings [Contents]
/* * leds.h -- control the led's on a Motorola mc68ec0x0 board. */#ifndef __LEDS_H__#define __LEDS_H__#define LED_ADDR	0xd00003#define LED_0 ~0x1#define LED_1 ~0x2#define LED_2 ~0x4#define LED_3 ~0x8#define LED_4 ~0x10#define LED_5 ~0x20#define LED_6 ~0x40#define LED_7 ~0x80#define LEDS_OFF	0xff#define LEDS_ON	0x0#define FUDGE(x) ((x >= 0xa && x <= 0xf) ? (x + 'a') & 0x7f : (x + '0') & 0x7f)extern void led_putnum( char );#endif	/* __LEDS_H__ *//* * leds.c -- control the led's on a Motorola mc68ec0x0 (IDP)board. */#include "leds.h"void zylons();void led_putnum();/* * led_putnum -- print a hex number on the LED. the value of num must be a char with * the ascii value. ie... number 0 is '0', a is 'a', ' ' (null) clears *	the led display. *	Setting the bit to 0 turns it on, 1 turns it off. *	the LED's are controlled by setting the right bit mask in the base *	address. *	The bits are: *	[d.p | g | f | e | d | c | b | a ] is the byte. * *	The locations are: * * a * ----- * f | | b * | g | * ----- * | | * e | | c * ----- * d . d.p (decimal point) */voidled_putnum ( num )char num;{ static unsigned char *leds = (unsigned char *)LED_ADDR; static unsigned char num_bits [18] = { 0xff,	/* clear all */ 0xc0, 0xf9, 0xa4, 0xb0, 0x99, 0x92, 0x82, 0xf8, 0x80, 0x98, /* numbers 0-9 */ 0x98, 0x20, 0x3, 0x27, 0x21, 0x4, 0xe	/* letters a-f */ }; if (num >= '0' && num <= '9') num = (num - '0') + 1; if (num >= 'a' && num <= 'f') num = (num - 'a') + 12; if (num == ' ') num = 0; *leds = num_bits[num];}/* * zylons -- draw a rotating pattern. NOTE: this function never returns. */voidzylons(){ unsigned char *leds	= (unsigned char *)LED_ADDR; unsigned char curled = 0xfe; while (1) { *leds = curled; curled = (curled >> 1) | (curled << 7); delay ( 200 ); }}