Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
PAUSE not working (*solved*)
#2
For the time being I have copied a Sub from the Berks Man source code which does the job using the CPU's HALT instruction:
Code:
SUB Wait(w AS uInteger)
    'Pause for w frames
    WHILE w > 0
        w=w-1
        ASM
        HALT
        END ASM
    END WHILE
END SUB
Reply


Messages In This Thread
PAUSE not working (*solved*) - by patters - 2020-12-29, 04:56 AM
RE: PAUSE - by patters - 2020-12-29, 01:48 PM
RE: PAUSE - by boriel - 2020-12-29, 06:07 PM
RE: PAUSE - by patters - 2020-12-29, 06:11 PM
RE: PAUSE - by boriel - 2020-12-29, 06:20 PM
RE: PAUSE - by boriel - 2020-12-29, 06:37 PM
RE: PAUSE - by patters - 2020-12-29, 06:45 PM
RE: PAUSE - by boriel - 2020-12-29, 06:54 PM
RE: PAUSE - by patters - 2020-12-29, 07:08 PM
RE: PAUSE - by boriel - 2020-12-29, 08:18 PM
RE: PAUSE - by patters - 2020-12-29, 08:34 PM
RE: PAUSE - by boriel - 2020-12-29, 09:13 PM
RE: PAUSE - by patters - 2020-12-30, 12:52 AM
RE: PAUSE - by boriel - 2021-01-02, 03:20 PM
RE: PAUSE not working (*solved*) - by patters - 2021-01-03, 01:52 AM
RE: PAUSE not working (*solved*) - by boriel - 2021-01-03, 06:02 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)