代码搜索结果
找到约 10,000 项符合
ARM 的代码
trled
arm-elf-gcc -Tlpc2106-rom.ld -nostartfiles -Wl,-Map=led.map,--cref,-nostdlib -s -o led boot.s led.c
arm-elf-objcopy --output-target ihex led led.hex
arm-elf-objcopy --output-target binary led led.bi
makefile
cd //
cd devo/9600_install/os
arm-elf-gcc -I../include hello.c -L../lib -Ttarget.ld -nostdlib
arm-elf-objcopy a.out -O ihex eCos_gps.hex
makefile2
CC = arm-linux-gcc
INCLUDEDIR=/home/YUANFENG2440/linux-2.4.20/include
CFLAGS = -D__KERNEL__ -DMODULE -DEXPORT_SYMTAB -O2 -Wall -I$(INCLUDEDIR)
LD = arm-linux-ld
all:
$(CC) $(CFLAGS) -c captr
makefile
#
# $Id: Makefile 338 2008-11-10 04:15:26Z jcw $
# $Revision: 338 $
# $Author: jcw $
# $Date: 2008-11-09 23:15:26 -0500 (Sun, 09 Nov 2008) $
# $HeadURL: http://tinymicros.com/svn_public/arm/lpc21
cc_build_debug.log
---------------------------- norflash.pjt - Debug ----------------------------
[flash_test.c] "C:\CCStudio_v3.2\tms470\cgtools\bin\cl470" -g -q -o1 -fr"./Debug/" -i"." -i"../../include/" -i"../../c
build-utpmc-uclinux
#!/bin/sh
#
# Please make sure that the following things are OK:
#
# 1. You have installed the arm-elf-tools already.
# 2. Your uClinux distribution has been installed into the directory of '/opt
build-utpmc-uclinux
#!/bin/sh
#
# Please make sure that the following things are OK:
#
# 1. You have installed the arm-elf-tools already.
# 2. Your uClinux distribution has been installed into the directory of '/opt
lab3.o.dump
lab3.o: file format elf32-littlearm
Disassembly of section .text:
00000000 :
0: e92d4010 stmdb sp!, {r4, lr}
4: e24dd018 sub sp, sp, #24 ; 0x18
8: e59f30f4 ldr r3, [pc, #f4
makefile
mmu : head.s main.c init.c init.h mmu.c mmu.h s3c2410.h serial.h interrupt.c interrupt.h
arm-linux-gcc -c -o head.o head.s
arm-linux-gcc -c -o init.o init.c
arm-linux-gcc -c -o serial.o serial.c
makefile
CC = arm-linux-gcc
STRIP = arm-linux-strip
EXEC = tcp_server
SRC = tcp_server.c
all: $(EXEC)
$(EXEC): $(OBJS)
$(CC) -o $(EXEC) $(SRC)
$(STRIP) $(EXEC)
clean:
rm -f $(EXEC)