| boot.s | The bootloader for every lab program.
go 10000 will call this code which initializes memory, I/O space
and runs the main program. |
| boot_only.c | A program for initializing memory and I/O space without running a user program. |
| io.c | M68332 specific stdio routines. |
| scope.s | Routines for triggering oscilloscope channels for testing and debugging. |
| default.lnk | The linker memory map for the m68332 system. |
| Makefile | Run make to build scope.o io.o and boot.o which you will link to your main
application later. Run make mem to build the file mem.s19 which you can upload to the system and run
go 10000.
This will initialize the memory and I/O space which must be done prior to certain lab projects ( not used in lab 1 ) |
| libuC.a | |
|
| liblwip4.a | These files will appear only after running make install from the uC_OS and
lwip/build directories. The libraries must exist here in order for the programs to link with them. |