Search found 5 matches

by gharryh
Tue Feb 13, 2007 10:31 am
Forum: Flowcode V2 & V3
Topic: MATH problem
Replies: 7
Views: 7333

Can i attach my flowcode for a review??
by gharryh
Tue Feb 13, 2007 10:25 am
Forum: Flowcode V2 & V3
Topic: Wont produce ASM code
Replies: 3
Views: 4196

Sorry Steve, Excuse my stupidness but i am not a expert programmer in C. I normaly use ASM and i have noticed, not only in computers, that younger people than i am, nearly 50, think that everyone imediate understand everything. I need a littlebit more explanation off thing, sorry. I hoped that Flowc...
by gharryh
Mon Feb 12, 2007 10:18 pm
Forum: Flowcode V2 & V3
Topic: Wont produce ASM code
Replies: 3
Views: 4196

Wont produce ASM code

I am a total newbie to flowcode so sorry for the problem but i build something and that compiles to C-code: //************************************************************************************ //** //** File name: \\EIBERGEN01\Users\h.arends\My Documents\ASM Files\SpeedoMeter\Flowcode2.c //** Gene...
by gharryh
Mon Feb 12, 2007 10:03 pm
Forum: Flowcode V2 & V3
Topic: MATH problem
Replies: 7
Views: 7333

Hi Steve, 32-bit maths can be done within C using the "long" datatype, so this may work: long distanceProd, timeProd, KPH; distanceProd = FCV_DISTANCE * 36; timeProd = FCV_SECONDS * 10000; KPH = distanceProd / timeProd; FCV_SKPH = KPH * 32; (where the 3 FCV_ variables are defined within Flowcode as ...
by gharryh
Sun Feb 11, 2007 2:23 pm
Forum: Flowcode V2 & V3
Topic: MATH problem
Replies: 7
Views: 7333

MATH problem

I want to perform this routine distanceProd = distance * 36 timeProd = seconds * 10000 KPH = distanceProd / timeProd sKPH = KPH * 32 where distance = 10000 (this is the maximum distance) and seconds = 3600 (the minimum KPH of 0.01 at maximum distance) This wouild mean a 32/24bit opperation. How can ...