Author Topic: Strange Error Message, need help  (Read 6007 times)

0 Members and 1 Guest are viewing this topic.

Peter

  • Guest
Re: Strange Error Message, need help
« Reply #15 on: October 31, 2011, 05:09:57 AM »
another solution:

Code: [Select]
% true  =1 
% false =0 

bool a= true

mov eax,a
neg eax
not eax
mov a,eax

print "a= false  " + a

mov eax,a
not eax
neg eax
mov a,eax

print "a= true  " + a

kryton9

  • Guest
Re: Strange Error Message, need help
« Reply #16 on: October 31, 2011, 12:26:17 PM »
Thanks Peter for the examples, nice to see all the options available.