From 55cda4af4279c5d1b0e99721701eccfee40fe39b Mon Sep 17 00:00:00 2001 From: Manfred Date: Thu, 28 Oct 2010 11:26:58 +0200 Subject: [PATCH] src: source code update und trennen von asm und c code --- 2_isa/src/umul.c | 7 +++++++ 2_isa/src/umul.s | 27 +++++++++------------------ 2 files changed, 16 insertions(+), 18 deletions(-) create mode 100644 2_isa/src/umul.c diff --git a/2_isa/src/umul.c b/2_isa/src/umul.c new file mode 100644 index 0000000..2c56a2a --- /dev/null +++ b/2_isa/src/umul.c @@ -0,0 +1,7 @@ +int unsignedmul(int a,int b){ + int i,c=0; + for(i=0;i