代码搜索:aRM
找到约 10,000 项符合「aRM」的源代码
代码结果 10,000
www.eeworm.com/read/462018/7212954
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
www.eeworm.com/read/461613/7223251
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
www.eeworm.com/read/458033/7313758
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
www.eeworm.com/read/457091/7334301
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
www.eeworm.com/read/444338/7613674
log 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
www.eeworm.com/read/434049/7894462
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
www.eeworm.com/read/298407/7962570
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
www.eeworm.com/read/244517/12858806
dump 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
www.eeworm.com/read/143189/12890187
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
www.eeworm.com/read/330348/12900238
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)