-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
68k runtime issue #27
Comments
It looks like something bad is happening after collecting garbage. I added
But the problem is not with On |
BTW I tried a 6502 port and it didn't work. A platform without alignment. |
The current implementation requires at least 32-bit aligned addresses. It may be worth adding this problem to the 'Known Issues' in impl.md. |
Well, I had to reduce buf's size to 6000 because of memory constraints, 32-bit aligned is not an option. |
I think if |
Nice try but it didn't help. |
The compiler constructor said this code seems to be undefined behavior, please take a look: |
Perhaps the compiler says this because From C standard:
The problem described in https://stackoverflow.com/questions/1812348/a-question-about-union-in-c-store-as-one-type-and-read-as-another-is-it-impl is related to incorrect initialization, there is no such problem here. |
I'm tried to compile for Amiga with vbcc compiler (without float point), and I got stack overflow on |
You may type |
Now it works well. If you leave out the fact that it's very slow. |
The text was updated successfully, but these errors were encountered: