Ultimate Amiga

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 [2]   Go Down

Author Topic: Amos Bugs  (Read 16718 times)

0 Members and 1 Guest are viewing this topic.

Spellcoder

  • A600
  • *
  • Karma: 0
  • Offline Offline
  • Posts: 27
    • Amiga Coding WIKI
Re: Amos Bugs
« Reply #15 on: October 12, 2007, 07:28:00 PM »

I've started a list of AMOS-bugs too, I try to test them all but my time is limited (working on some other stuff for the WIKI first).
Everyone is welcome to edit the list.
Direct link to the amigacoding WIKI page:

http://amigacoding.com/index.php/AMOS:Bugs

I've noticed the bug with long inputs too once.
At first I thought it hanged/froze your Amiga indefinitly, however a few weeks ago when I
retried the bug I noticed after half a minute the program would resume. (without crashing)

The bug with lots of Data is also in the AMOSPro V2 compiler.
It just crashes during compiling (guru number you get meant that memheader was corrupt I think)

The problem with keypresses on the same row on some Amiga's is in the hardware I think.
AMOS can't help with that :(.

Didn't know (or forgot) about the bug with Add, ages ago I read that post.


edit (feb 2008): updated link
« Last Edit: February 15, 2008, 07:23:36 PM by Spellcoder »
Logged

Lonewolf10

  • AMOS Extensions Developer
  • AMOS Dev
  • A2000
  • *****
  • Karma: 3
  • Offline Offline
  • Gender: Male
  • Posts: 618
    • http://www.aliensrcooluk.com
Re: Amos Bugs
« Reply #16 on: October 12, 2007, 09:38:55 PM »


The problem with keypresses on the same row on some Amiga's is in the hardware I think.
AMOS can't help with that :(.

Didn't know (or forgot) about the bug with Add, ages ago I read that post.


Yeah, keypress bug is a hardware thing. I never use add anyway (I prefer X=X+1 or Inc X).


Regards,
Lonewolf10

Logged

Hungry Horace

  • Amorphous Blue-Blob Man
  • Site Admin
  • A4000T
  • ******
  • Karma: 307
  • Offline Offline
  • Gender: Male
  • Posts: 3,364
  • Don't forget... Ameboid's need love too!
    • AUW
Re: Amos Bugs
« Reply #17 on: March 09, 2009, 08:48:32 PM »

dunno if anyone else has come across this when using the LOAD iFF functions of AMOS, but i was getting this wierd graphic glitch, shown here:

http://pspuae.condor.serverpro3.com/images/mlm/bug1b.png



Anyway, although I solved this after a bit of experimentation, whereby i made my picture a bit wider with new width of 352, a wiser man than myself was able to tell me a possible reason:

Quote from: StingRay
probably uses blitter to copy it and can't handle sizes not divisible by 16
 which still means: the amos iff loader ****** sucks

Fair point, but i thought i'd post it here in case anyone else encountered the same thing.
« Last Edit: July 07, 2016, 07:37:35 PM by FOL »
Logged
Quote from: KillerGorilla
because winuae is made of code and your amiga is made of stuff

Lonewolf10

  • AMOS Extensions Developer
  • AMOS Dev
  • A2000
  • *****
  • Karma: 3
  • Offline Offline
  • Gender: Male
  • Posts: 618
    • http://www.aliensrcooluk.com
Re: Amos Bugs
« Reply #18 on: March 13, 2009, 09:23:02 PM »


No, because I haven't really had the need to use predrawn full screen images in any of my stuff yet. Have you added it to the bugs page on Amiga Coding?


Regards,
Lonewolf10

Logged

LuisCoCo

  • A600
  • *
  • Karma: 0
  • Offline Offline
  • Gender: Male
  • Posts: 7
  • Retro User And Programing
    • Retro Software in spanish
Re: Amos Bugs
« Reply #19 on: July 05, 2016, 03:34:01 PM »

Hello friends , I am a new user of AMOS and practicing with amal I realized that in the " IF " possessed "AND " "& " do not work properly, and only the last running on the line, know this bug?

Excuse my English , I was born in Spain
Logged

Amiten

  • A600
  • *
  • Karma: 1
  • Offline Offline
  • Gender: Male
  • Posts: 128
  • Amos Coder Since 1990
    • Amiten Software
Re: Amos Bugs
« Reply #20 on: July 06, 2016, 08:40:19 PM »

Nice and unknow info about Amos here thanks!,

What you think about to start a knowlege List of  Amos Bugs for orhers can avoid?? 

Example:
When we Flip a Bob in amos with $+8000 and other Sides and we stop the program when a flip had been  made and try to modify Add more bobs in the object editor the bob apears flip :( no good because we flip manually in code but not in the bank.

Extrange but like all other bugs or non normaly functions mention here is possible to fix or avoid if we know.

All the best

Enviado desde mi SM-N9005 mediante Tapatalk

Logged
AMIGA is a Style of Life

bruceuncle

  • AMOS Dev
  • A500
  • *****
  • Karma: 6
  • Offline Offline
  • Gender: Male
  • Posts: 425
  • WINUAE Amiga User
Re: Amos Bugs
« Reply #21 on: July 19, 2016, 11:30:41 PM »

Example:
When we Flip a Bob in amos with $+8000 and other Sides and we stop the program when a flip had been  made and try to modify Add more bobs in the object editor the bob apears flip :( no good because we flip manually in code but not in the bank.
This behaviour is what I've classified as "That's the way AMOS Pro works!".  It's not something that will get fixed as a bug as it's the most efficient way for AMOS to do the flip - it uses the already allocated space in the sprite bank in chip RAM.  It could be changed, but would only slow AMOS down as it would have to allocate memory to hold the flipped image, etc.  There are a few other reported bugs that fit this category  :o .

Note that the User Menu in AMOS generally has two versions of each of the Editing Accessories.  The ones at the top operate on banks grabbed from the currently loaded program.  The ones lower down are 'stand alone' and expect to load a file.  You should always regard the contents of loaded banks as volatile (although the image flipping one is the only one that I've come across that changes a loaded bank, but can't guarantee that there might be others  ::) ).  When developing, I always work on the files for banks rather than the loaded copy to be absolutely sure nothing gets changes or corrupted.
Logged
Repeat after me ...  "The AMOS Pro architecture is complex but it is not complicated."

Amiten

  • A600
  • *
  • Karma: 1
  • Offline Offline
  • Gender: Male
  • Posts: 128
  • Amos Coder Since 1990
    • Amiten Software
Re: Amos Bugs
« Reply #22 on: July 25, 2016, 01:21:18 AM »

AMEN ;) bruceuncle
Logged
AMIGA is a Style of Life
Pages: 1 [2]   Go Up
 

TinyPortal 2.2.2 © 2005-2022