Not sure whats wrong here


Results 1 to 4 of 4

Threaded View

  1. #2
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default Re: Not sure whats wrong here

    Looks like a compiler parser "feature"
    try
    Code:
    IF (LSH1 &/ HSP1)=1 THEN LIMITHIT
    And then
    Code:
    IF (LSH1 &/ HSP1) THEN GOTO LIMITHIT
    BTW, you should use "Logical Operator" not "Bitwise operator", unless I miss something.
    Code:
    IF (LSH1 ANDNOT HSP1) THEN LIMITHIT
    Last edited by mister_e; - 6th February 2011 at 18:27.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts