Forum: Coders. System
29 March 2021, 04:11
|
Replies: 5
Views: 420
|
Forum: Coders. General
13 March 2021, 23:18
|
Replies: 199
Views: 7,404
So basically you want to implement your bios to...
So basically you want to implement your bios to run your PDOS and programs for it that are compatible with PDOS/msdos (at least at the source level) on top of AmigaOS to have access to hd/files etc....
|
Forum: Amiga scene
11 March 2021, 21:49
|
Replies: 1,081
Views: 189,115
|
Forum: Amiga scene
10 March 2021, 17:14
|
Replies: 1,081
Views: 189,115
Will updated ReAction classes be released with...
Will updated ReAction classes be released with 3.2? If so, what ReAction gadgets/classes will be available? Will they be fully compatible with AmigaOs4 ReAction?
So it seems to be possible to use...
|
Forum: support.WinUAE
07 March 2021, 00:43
|
Replies: 133
Views: 126,901
Hi Toni,
Is this possible to implement support...
Hi Toni,
Is this possible to implement support for SAS C HUNK_DEBUG? I found only some info here (http://amiga-dev.wikidot.com/file-format:hunk#toc27) about the content of this hunk when compiling...
|
Forum: support.WinUAE
07 March 2021, 00:33
|
Replies: 133
Views: 126,901
|
Forum: support.WinUAE
04 March 2021, 05:27
|
Replies: 133
Views: 126,901
|
Forum: Coders. General
03 March 2021, 19:15
|
Replies: 199
Views: 7,404
|
Forum: Coders. General
03 March 2021, 00:27
|
Replies: 199
Views: 7,404
|
Forum: Coders. C/C++
26 February 2021, 03:18
|
Replies: 15
Views: 860
You can use AllocMem from exec to allocate a...
You can use AllocMem from exec to allocate a block of memory and then use Allocate to allocate items from this block. At exit you do not need to free each allocated items, freeing whole memory block...
|
Forum: Coders. Asm / Hardware
26 December 2020, 12:31
|
Replies: 32
Views: 1,711
I've just noticed that both routines did not...
I've just noticed that both routines did not calculate correct results when 16bit value was negative, so don't bother. When I get back home I'll verify and update the code.
So much for posting late...
|
Forum: Coders. Asm / Hardware
26 December 2020, 04:31
|
Replies: 32
Views: 1,711
Try the following code:
; on entry: d0 -...
Try the following code:
; on entry: d0 - 16bit var, d1 - 32bit var
; at exit: d0 - 32bit result
multiply16x32:
move.w d0,d3
bpl.b non_negative
neg.w d0
non_negative:
move.l d1, d2
|
Forum: request.Other
16 November 2020, 12:33
|
Replies: 5
Views: 1,671
|
Forum: request.Other
19 October 2020, 04:47
|
Replies: 5
Views: 1,671
|
Forum: request.Other
18 September 2020, 06:39
|
Replies: 5
Views: 1,671
VHI SDK/example driver
Hi,
I'm looking for the VHI SDK or VHI example driver source code. There was a VHI_Example_Driver.zip available at amiga.iospirit.de until 2007, but archive.org did not archive a copy.
Thanks in...
|
Forum: Coders. C/C++
16 August 2020, 01:38
|
Replies: 5
Views: 1,137
|
Forum: request.Apps
06 August 2020, 23:53
|
Replies: 9
Views: 851
Go to the source code repository at SourceForge...
Go to the source code repository at SourceForge here https://sourceforge.net/p/dopus5allamigas/code/HEAD/tree/trunk/
From here you check all subdirectories in source directory for files ending with...
|
Forum: Coders. C/C++
06 August 2020, 00:35
|
Replies: 8
Views: 1,161
|
Forum: support.Other
06 August 2020, 00:23
|
Replies: 17
Views: 1,902
|
Forum: request.Apps
06 August 2020, 00:10
|
Replies: 11
Views: 1,116
if an application supports localizations via...
if an application supports localizations via locale.library, usually original english strings are hardcoded inside the application. In such case you have two options, depending on the application:...
|
Forum: request.Apps
05 August 2020, 05:26
|
Replies: 11
Views: 1,116
|
Forum: request.Apps
04 August 2020, 15:53
|
Replies: 11
Views: 1,116
|
Forum: request.Other
29 April 2020, 11:29
|
Replies: 4
Views: 1,208
|
Forum: Amiga scene
14 April 2020, 23:02
|
Replies: 1,081
Views: 189,115
|
Forum: Coders. Asm / Hardware
10 November 2019, 00:27
|
Replies: 18
Views: 1,273
You can use polar coordinate system to store...
You can use polar coordinate system to store objects coordinates.
For each object keep its x,y location, distance to move in one step and direction vector. New location you'll get from the...
|
Forum: Coders. Contest
17 October 2019, 00:06
|
Replies: 1,800
Views: 196,473
You lied again about the discussion on ppa,...
You lied again about the discussion on ppa, here's https://www.ppa.pl/forum/komentarze/40738/rygar-legendary-warrior/2#m663433 your answer to someone who said, that for him Rygar (the original) is...
|
Forum: Coders. Asm / Hardware
16 June 2019, 17:11
|
Replies: 9
Views: 853
Stack is aligned to word address only in...
Stack is aligned to word address only in Postincrement Register Indirect
or Predecrement Register Indirect addressing modes. Subq.l should decrement a7 by 1 but the move.b d0, -(a7) will decrement...
|