Search found 5 matches

by wasq
16 Jan 2021 15:43
Forum: mikroPascal PRO for AVR General
Topic: TRUE <> 0 ??
Replies: 3
Views: 1908

Re: TRUE <> 0 ??

Thanks Dany !
Also I found in the description MIKROPASCAL VER 7.01 == TRUE (all ones) or FALSE (zero)
by wasq
04 Jan 2021 12:28
Forum: mikroPascal PRO for AVR General
Topic: TRUE <> 0 ??
Replies: 3
Views: 1908

TRUE <> 0 ??

Hi ! Interesting BUT not working true <> 0 false = 0; The while statement does not work correctly in some cases. Example program test; var aa:boolean; begin aa:=%10000000; while NOT aa do; end. aa <> 0 means aa=true, ( NOT aa ) means = false. BUT the while loop runs forever. what to do?? Привет ! Ин...
by wasq
26 Dec 2018 10:23
Forum: mikroPascal PRO for AVR General
Topic: LICENSE CODE
Replies: 1
Views: 1789

LICENSE CODE

Dear.
You have a license = LICENSE CODE. Allowed for two computers. I put LICENSE CODE at home and in the office. Going on vacation for 3 weeks. What will happen if I put it on a third computer - a notebook? thank
by wasq
08 Jun 2018 17:53
Forum: mikroPascal PRO for AVR General
Topic: const array non-working program code
Replies: 2
Views: 1911

Re: const array non-working program code

Hi There are many simple solutions. I will show one of them. I hope for a correction Thank you/ program yy; Type ImPP = string [5]; Var i:byte; st:ImPP; const Im: array [1..5] Of ImPP = ('SSSSS','WWWWW','RRRRR','FFFFF','HHHHH'); Function cs(vx:byte):ImPP; Var w:byte; Begin cs:=''; For w:=0 to 5 Do c...
by wasq
07 Jun 2018 17:41
Forum: mikroPascal PRO for AVR General
Topic: const array non-working program code
Replies: 2
Views: 1911

const array non-working program code

IDE MikroPascal PRO for AVR version 7.0.1 Atmega328P The program does not work correctly if the index is variable. That's right, if the index is constant. program yy; Type ImPP = string [5]; Var i:byte; st:ImPP; const Im: array [1..5] Of ImPP = ('SSSSS','WWWWW','RRRRR','FFFFF','HHHHH'); begin { This...

Go to advanced search