home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!cs.utexas.edu!uwm.edu!spool.mu.edu!agate!doc.ic.ac.uk!uknet!gdt!bsmail!ccsw
- From: ccsw@bristol.ac.uk (EthaStorm)
- Newsgroups: comp.sys.amiga.programmer
- Subject: Re: Assembler problem (Macro68)
- Message-ID: <1992Nov5.090609.26038@bristol.ac.uk>
- Date: 5 Nov 92 09:06:09 GMT
- References: <Bx5Ao0.4JJ@unx.sas.com> <1992Nov03.173522.27765@bmerh85.bnr.ca> <1992Nov3.190743.540@news.uit.no>
- Organization: University of Bristol, England
- Lines: 27
-
- In article <1992Nov3.190743.540@news.uit.no> borgen@stud.cs.uit.no (Borge Noest) writes:
- >
- >Does the following code look good to you?
- >
- >yes equ 0
- >no equ -1
- >
- >jump equ yes
- >
- > moveq #0,d0
- >
- > beq .weee
- >
- > if jump
- >.weee moveq #1,d1
- > elseif
- >.weee moveq #2,d1
- > endc
- >
- > rts
- >
-
- You have defined the label '.weee' TWICE. The two labels you have should be
- different. It's a bit like calling two places the same name then asking someone
- to go the one of the places. Can't be done by a simple processor...
-
- Steff *8)
-