代码搜索:ARM
找到约 10,000 项符合「ARM」的源代码
代码结果 10,000
www.eeworm.com/read/473117/6856671
txt readme.txt
1、将makefile中的
CROSS =/usr/local/arm/2.95.3/bin/arm-linux-
CFLAGS+=-I/usr/local/src/2.4.18-rmk7/include
CFLAGS+=-I/usr/local/src/2.4.18-rmk7/include/linux
CFLAGS+=-I/usr/local/arm/2.95.3/arm-linux/
www.eeworm.com/read/335207/12545591
txt readme.txt
1、将makefile中的
CROSS =/usr/local/arm/2.95.3/bin/arm-linux-
CFLAGS+=-I/usr/local/src/2.4.18-rmk7/include
CFLAGS+=-I/usr/local/src/2.4.18-rmk7/include/linux
CFLAGS+=-I/usr/local/arm/2.95.3/arm-linux/
www.eeworm.com/read/110262/15537914
h idea.h
/**********************************************************************
* idea.h
*
* Author : Sunflower
* CopyRight 2001 DATech
*
* 得安公司第二代加密卡idea运算程序。包括密钥生成、加解密
**********************
www.eeworm.com/read/378232/9240044
makefile
objs := head.o init.o leds.o
mmu.bin : $(objs)
arm-linux-ld -Tmmu.lds -o mmu_elf $^
arm-linux-objcopy -O binary -S mmu_elf $@
arm-linux-objdump -D -m arm mmu_elf > mmu.dis
%.o:%.c
arm-linux-gcc
www.eeworm.com/read/378226/9240502
makefile
objs := head.o init.o serial.o main.o
uart.bin: $(objs)
arm-linux-ld -Tuart.lds -o uart_elf $^
arm-linux-objcopy -O binary -S uart_elf $@
arm-linux-objdump -D -m arm uart_elf > uart.dis
%.o:%.c
www.eeworm.com/read/362268/10008142
makefile
nand : head.s main.c init.c
arm-linux-gcc -c -o head.o head.s
arm-linux-gcc -c -o init.o init.c
arm-linux-gcc -c -o main.o main.c
arm-linux-ld -Tnand.lds head.o init.o main.o -o nand_tmp.o
arm-
www.eeworm.com/read/315320/13545971
makefile
leds : head.S main.c
arm-linux-gcc -c -o head.o head.S
arm-linux-gcc -c -o main.o main.c
arm-linux-ld -Ttest.lds head.o main.o -o leds_tmp.o
arm-linux-objcopy -O binary -S leds_tmp.o leds
arm-l
www.eeworm.com/read/315320/13545980
makefile~
leds : head.S leds.c
arm-linux-gcc -c -o head.o head.S
arm-linux-gcc -c -o main.o main.c
arm-linux-ld -Ttest.lds head.o main.o -o leds_tmp.o
arm-linux-objcopy -O binary -S leds_tmp.o leds
arm-l
www.eeworm.com/read/477944/6726332
makefile
objs := head.o init.o nand.o main.o
nand.bin : $(objs)
arm-linux-ld -Tnand.lds -o nand_elf $^
arm-linux-objcopy -O binary -S nand_elf $@
arm-linux-objdump -D -m arm nand_elf > nand.dis
%.o:%.c
www.eeworm.com/read/477944/6726365
makefile
objs := head.o init.o interrupt.o main.o
timer.bin: $(objs)
arm-linux-ld -Ttimer.lds -o timer_elf $^
arm-linux-objcopy -O binary -S timer_elf $@
arm-linux-objdump -D -m arm timer_elf > timer.dis