Search found 17 matches

by nmakk
Mon Mar 29, 2021 10:43 am
Forum: Announcements
Topic: Hollywood 9.0: Sugarcane released!
Replies: 43
Views: 57609

Re: Hollywood 9.0: Sugarcane released!

Great, thank you!
by nmakk
Sun Mar 28, 2021 5:46 am
Forum: Announcements
Topic: Hollywood 9.0: Sugarcane released!
Replies: 43
Views: 57609

Re: Hollywood 9.0: Sugarcane released!

Hi Andreas,

Do you plan to add the option to create native macOS arm (apple silicon) executable with hollywood9?

Thanks
Norbert
by nmakk
Sun Jan 03, 2021 10:59 am
Forum: Remedios
Topic: Remedios with iOS 13.4.1
Replies: 9
Views: 11191

Re: Remedios with iOS 13.4.1

Just to confirm: the new instruction set works on Xcode Version 12.3 (12C33) as well. Today I created my app on a an M1 Mac via Xcode to an iPhone 12 Pro. All works fine!
by nmakk
Sat Nov 21, 2020 10:51 pm
Forum: Off topic
Topic: Apple goes ARM
Replies: 9
Views: 10471

Re: Apple goes ARM

Thanks Andreas! That would be awesome — thanks for your continuous support!
by nmakk
Fri Nov 20, 2020 11:43 am
Forum: Off topic
Topic: Apple goes ARM
Replies: 9
Views: 10471

Re: Apple goes ARM

Yes, but native arm runs faster of course. As Hollywood can compile for ARM (linux) anyway, I thought to follow this up :)
by nmakk
Thu Nov 19, 2020 3:43 pm
Forum: Off topic
Topic: Apple goes ARM
Replies: 9
Views: 10471

Re: Apple goes ARM

Hi -- is there a version planned now for the released ARM based Macintosh models?
by nmakk
Mon Jun 22, 2020 9:34 pm
Forum: Remedios
Topic: Remedios with iOS 13.4.1
Replies: 9
Views: 11191

Re: Remedios with iOS 13.4.1

Appreciate the update -- thanks for the support.
by nmakk
Thu May 14, 2020 9:23 pm
Forum: Newbie questions
Topic: Negative arrays
Replies: 7
Views: 5603

Re: Negative arrays

Hi Andreas, I think it was an issue in my code, that the array was overwritten by a later definition. So to decribe in more detail: after I successfully created the negative array with min = -2 max = 10 a = {} For i = min To max a[i] = {} For j = min To max a[i][j] = 0 Next Next I issued a command l...
by nmakk
Mon May 11, 2020 6:26 am
Forum: Windows IDE
Topic: Hollywood extension for Visual Studio Code (hw4vsc) released
Replies: 37
Views: 31449

Re: Hollywood extension for Visual Studio Code (hw4vsc) released

That is great! Thanks for this -- works really well. You can now use a setup with this on macOS as well, works excellent.
by nmakk
Wed May 06, 2020 7:30 pm
Forum: Newbie questions
Topic: Negative arrays
Replies: 7
Views: 5603

Re: Negative arrays

So, just for the record: in the main block after the initial cycle of assigning values to the 'array' from -2 to 10 I had other value assignments in a form: a[0]={1,2,3,4,5,6,7,8,9,10} and that deleted (sent to NIL:) all values and keys before 0... Anything after this that referred to anything below...