代码搜索结果

找到约 10,000 项符合 ARM 的代码

mpegvideo_arm.c

/* * Copyright (c) 2002 Michael Niedermayer * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published b

asm_arm.h

/******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE

arm_client.c

/* *Arm_Client.c *@周润生 万世辉 张灿群 */ #include "MyHost.h" char errMsg[MAXLINE]; static struct v4ldevice vd; void err_exit(char *err_msg) { printf(err_msg); if (errno != 0) perror("error:"); close

arm_server.c

/* *Arm_Aerver.c *@周润生 万世辉 张灿群 */ #include "MyHost.h" int main(int argc,char *args[]) { if(argc>=2) { MyServer(8888,args[1]); } MyServer(8888,"sheng.ppm"); return 0; }

arm43.c

//使用C 程序调用汇编的方式,实现字符串拷贝。 #include extern void strcopy(char *s1,char *s2); int main() { char *s1="string"; char s2[10]; strcopy(s2,s1); printf("%s",s2); return 0

arm44.s

area x, code, readonly export strcopy strcopy ldrb r2,[r1] cmp r2,#0 beq over strb r2,[r0] add r0,r0,#1 add r1,r1,#1 b strcopy over mov pc,lr