Dead Hackers Society Forum Atari demoscene news http://dhs.nu/ [scene] Re: 3D textured tube scene https://madteam.atari8.info/index.php?prod=fx#tunnel]]> http://dhs.nu/bbs-scene/index.php?request=20277 http://dhs.nu/bbs-scene/index.php?request=20277 Posted by: Cyprian Fri, 10 May 2024 15:06:00 +0200 [coding] Re: DMA volume hints coding http://dhs.nu/bbs-coding/index.php?request=5322 http://dhs.nu/bbs-coding/index.php?request=5322 Posted by: PeylOW Thu, 21 Mar 2024 21:07:00 +0200 [coding] Re: DMA volume hints coding
https://manual.audacityteam.org/man/distortion.html

its the distortion effect, then select the "leveller" and then degree of levelling "4"

thats what I do anyway ;)]]>
http://dhs.nu/bbs-coding/index.php?request=5321 http://dhs.nu/bbs-coding/index.php?request=5321 Posted by: gwEm/PHF Wed, 20 Mar 2024 15:13:00 +0200
[coding] DMA volume hints coding
Don't forget the Falcon has different volume balance to the TT/STe

You could try the "maximiser" function in the Audacity sample editor. Alternatively, a bit of clipping is absolutely fine unless it sounds bad. Personally I run the maximiser function on the "heavy" setting, and then keep clipping the sample until it sounds bad and then undo the last volume boost.

Its actually possible to get the DMA to sound louder than the YM this way, but it depends of course.]]>
http://dhs.nu/bbs-coding/index.php?request=5320 http://dhs.nu/bbs-coding/index.php?request=5320 Posted by: gwEm/PHF Wed, 20 Mar 2024 15:05:00 +0200
[coding] DMA volume hints coding http://dhs.nu/bbs-coding/index.php?request=5319 http://dhs.nu/bbs-coding/index.php?request=5319 Posted by: gwEm/PHF Wed, 20 Mar 2024 15:01:00 +0200 [coding] Re: DMA audio volume? coding http://dhs.nu/bbs-coding/index.php?request=5318 http://dhs.nu/bbs-coding/index.php?request=5318 Posted by: mikro Mon, 18 Mar 2024 10:02:00 +0200 [coding] DMA audio volume? coding
I can counter to a degree by increasing the volume of the samples, but for loud enough to my liking the samples gets clipped.

Is there any known software solution for cranking up the DMA volume a bit, or lowering the YM without having a musician redo the songs?]]>
http://dhs.nu/bbs-coding/index.php?request=5317 http://dhs.nu/bbs-coding/index.php?request=5317 Posted by: PeyloW Fri, 15 Mar 2024 18:38:00 +0200
[scene] Re: 3D textured tube scene
https://mikro.naprvyraz.sk/docs/index.htm
http://s390174849.online.de/ray.tscc.de/index.htm

And of course youtube, there's a tutorial for everything these days.

The intro you linked doesn't contain any 3D texture mapped objects, btw.]]>
http://dhs.nu/bbs-scene/index.php?request=20276 http://dhs.nu/bbs-scene/index.php?request=20276 Posted by: mikro Mon, 26 Feb 2024 10:21:00 +0200
[scene] 3D textured tube scene I would like to ask you if you can teach me how to do a
three-dimensional textured tube on Atari ST .
I would like to do something like this:
https://www.youtube.com/watch?v=hqTI8vouca4

I would be very grateful if you can help me.]]>
http://dhs.nu/bbs-scene/index.php?request=20275 http://dhs.nu/bbs-scene/index.php?request=20275 Posted by: MisterG Sun, 25 Feb 2024 00:13:00 +0200
[scene] Re: SNDH and clobbered registers? scene
--
Anders Eriksson
ae@dhs.nu
]]>
http://dhs.nu/bbs-scene/index.php?request=20274 http://dhs.nu/bbs-scene/index.php?request=20274 Posted by: evil Sat, 24 Feb 2024 23:24:00 +0200
[scene] SNDH and clobbered registers? scene
The "SNDH file structure, Revision 2.00" text doc has examples where all registers are saved for the init, exit, and vbl functions.

Is this a guarantee I can trust in practice?]]>
http://dhs.nu/bbs-scene/index.php?request=20273 http://dhs.nu/bbs-scene/index.php?request=20273 Posted by: PeyloW Sun, 18 Feb 2024 23:21:00 +0200
[ct60] Re: CT60+SV+EtherNat continued ct60
This post really made me chuckle. :-) Hats off David Galvez and others, in 2024 we indeed do have a pretty cool USB stack on our Atari machines.

Someone mentioned it in some other post a few years ago... I also miss the times when this board was the central hub of all cool stuff happening around CT60 and CTPCI. :(
]]>
http://dhs.nu/bbs-ct60/index.php?request=13624 http://dhs.nu/bbs-ct60/index.php?request=13624 Posted by: mikro Thu, 11 Jan 2024 21:54:00 +0200
[scene] Dune on YT scene
Regards also to the people who recorded a few of the videos in this playlist!!

https://www.youtube.com/playlist?list=PLs4IoluFaVlt7KFEI_WNNkXvrDeDB-6wu]]>
http://dhs.nu/bbs-scene/index.php?request=20272 http://dhs.nu/bbs-scene/index.php?request=20272 Posted by: mic Sun, 17 Dec 2023 22:00:00 +0200
[scene] testthread scene http://dhs.nu/bbs-scene/index.php?request=20271 http://dhs.nu/bbs-scene/index.php?request=20271 Posted by: evil Sat, 11 Nov 2023 00:01:00 +0200 [scene] Re: Democyclopedia book out now! scene ]]> http://dhs.nu/bbs-scene/index.php?request=20270 http://dhs.nu/bbs-scene/index.php?request=20270 Posted by: MetalSnake Fri, 27 Oct 2023 22:31:00 +0200 [coding] Re: DSP memorymap problem coding
The secret is to label the beginning of each memory bank (X,Y and P)

For example:


ORG x:0

xmem_start:
first_x_variable dc 0
...

; Test the overflow of the internal X memory bank
IF (*-xmem_start)>$200
FAIL "Internal X memory overflow:",(*-xmem_start)
ENDIF


ORG x:$2000

nth_x_variable: dc 0

; Test the overflow of the external X memory bank
IF (*-xmem_start)>$4000
FAIL "External X memory overflow:",(*-xmem_start)
ENDIF



Then, you do the same for Y memory :


ORG y:0

ymem_start:
first_y_variable: dc 2000

IF (*-ymem_start)>$200
FAIL "Internal Y memory overflow:",(*-ymem_start)
ENDIF


and so on for every bank of memory you have to test.

And of course, the same for the P memory.


; Interrupt vector 0, start address of the DSP program
ORG P:0
startcode: jmp <$40

; Begining of the code
ORG P:$40
...



In fact, you just have to set the 3 variables
xmem_start
ymem_start
pmem_start

and all the compiler memory tests can be done with the * character.

Thanks again ggn.

Regards
Thadoss.



]]>
http://dhs.nu/bbs-coding/index.php?request=5316 http://dhs.nu/bbs-coding/index.php?request=5316 Posted by: Thadoss/Dune Wed, 11 Oct 2023 00:21:00 +0200
[coding] Re: DSP memorymap problem coding

IF (*-startcode)>$200
FAIL "External Y memory overflow:",(*-startcode)
ENDIF


The compiler now returns the following message:

**** 1540 [XXX.ASM 1524]: ERROR --- External P memory overflow:2047


No need to use endcode variable, I can use the star '*' character again.
But I still have to label the beginning of the code section.
I'll do some more tests on the X: memory and the Y: memory now.

Any idea how to write the memory value in hexa in the message ?

Regards
Thadoss
]]>
http://dhs.nu/bbs-coding/index.php?request=5315 http://dhs.nu/bbs-coding/index.php?request=5315 Posted by: Thadoss/Dune Tue, 10 Oct 2023 23:55:00 +0200
[coding] Re: DSP memorymap problem coding
You made my day, thanks a lot.
I insisted with the * character, but I didn't think about using start and stop labels.

It works perfectly now.

Best regards.

Thadoss]]>
http://dhs.nu/bbs-coding/index.php?request=5314 http://dhs.nu/bbs-coding/index.php?request=5314 Posted by: Thadoss/Dune Tue, 10 Oct 2023 23:34:00 +0200
[coding] Re: DSP memorymap problem coding
Something like this should do the trick, I think:

startcode:
dsr $8000
endcode:

if (endcode-startcode)>$4000
fail "External Y memory overflow"
ENDIF


...but of course I'd like to take the opportunity to plug in for the assembler I'm working on, rmac :). The following is equivalent:

.56001
.org y:

startcode:
rept 6000
nop
nop
nop
endr
endcode:

.print (endcode-startcode)
.if (endcode-startcode)>$4000
.print "External Y memory overflow"
.end
.ENDIF

]]>
http://dhs.nu/bbs-coding/index.php?request=5313 http://dhs.nu/bbs-coding/index.php?request=5313 Posted by: ggn Tue, 10 Oct 2023 16:19:00 +0200
[coding] Re: DSP memorymap problem coding
I used to code with Qdsp, but after speaking with Mikro last year at sillyventure, I tried and adopted the Motorola tools (with wine under Linux).

With Qdsp, I used to test the memory space boundaries with assembler commands like this :

IFLE $4000-*
FAIL "External Y memory overflow"
PRINTVAL $4000-*
ENDC


But I don't know how to do the same with Motorola DSP assembler

I tried :

IF $4000-*>0
FAIL 'External Y memory overflow'
ENDIF


IF is not recognised (ERROR --- Operation not allowed with address term (Operand field)

FAIL always return a compiler error ("External Y memory overflow" without any other comment


ENDIF without associated IF directive


Any tip to fix this ?

Regards
Thadoss
]]>
http://dhs.nu/bbs-coding/index.php?request=5312 http://dhs.nu/bbs-coding/index.php?request=5312 Posted by: Thadoss/Dune Sat, 30 Sep 2023 09:54:00 +0200
[scene] Re: Democyclopedia book out now! scene http://dhs.nu/bbs-scene/index.php?request=20269 http://dhs.nu/bbs-scene/index.php?request=20269 Posted by: s_t_s Thu, 31 Aug 2023 19:21:00 +0200 [scene] Re: Democyclopedia book out now! scene http://dhs.nu/bbs-scene/index.php?request=20268 http://dhs.nu/bbs-scene/index.php?request=20268 Posted by: s_t_s Thu, 31 Aug 2023 18:40:00 +0200 [scene] Re: Democyclopedia book out now! scene
And at first I thought I got the french version because the table of contents is still in french. :D]]>
http://dhs.nu/bbs-scene/index.php?request=20267 http://dhs.nu/bbs-scene/index.php?request=20267 Posted by: MetalSnake Tue, 29 Aug 2023 12:03:00 +0200
[scene] OFAM Atari Meeting GER 2023 scene
visit ofam.lima-city.de

The OFAM is an annual meeting for the fans of all Atari computers and consoles from 8 to 32 bit, from XL to Falcon with CT60 and from VCS to the Jaguar. It is held in the small upper-franconian village Muenchberg, 40 kms away from the czech-border.

Not only Atarians from Germany, but also from our EU-neighbour states do visit the OFAM on a regular base.

This is a 2 days event, you can arrive on Friday evening and stay until Sunday evening. The Saturday is the only day with an official part, usually there are a lot of Highlights... beside a good program (see the links below), you can play Atari games, via a Video-beamer on a big screen and network your Atari to others. Also there will be the possibility to drink some of the famous local beers and just have fun, or play a match of table-tennis.

Sure everyone can bring hard- and software and buy/sell or swap it.

The meeting itself will be absolutely FREE, but to leave a small gift to exceed the costs would be great!

On this point I would like to thank the YMCA Muenchberg, without them, the OFAM would not exist! Thank you for 9 years of OFAM!

I hope YOU will join the OFAM the next time and we see us there for some great hours of Atari!

If you want a place for sleep, then contact me via email! You can sleep for free on the floor or resident in a vacant room]]>
http://dhs.nu/bbs-scene/index.php?request=20266 http://dhs.nu/bbs-scene/index.php?request=20266 Posted by: MrHabaki Fri, 25 Aug 2023 16:50:00 +0200
[scene] Re: Democyclopedia book out now! scene http://dhs.nu/bbs-scene/index.php?request=20265 http://dhs.nu/bbs-scene/index.php?request=20265 Posted by: s_t_s Thu, 24 Aug 2023 19:37:00 +0200 [scene] Re: Democyclopedia book out now! scene The book arrived today, like a miracle.

Not very happy about the delays and lack of communication, but the book did arrive after four months.

Not sure if it's the original book they said was sent back in June, or if it's the replacement they say was sent in July or if it's a copy shipped after my last complaint a couple of weeks ago.

Anyway it arrived.

--
Anders Eriksson
ae@dhs.nu
]]>
http://dhs.nu/bbs-scene/index.php?request=20264 http://dhs.nu/bbs-scene/index.php?request=20264 Posted by: evil Thu, 24 Aug 2023 17:18:00 +0200
[scene] Re: Democyclopedia book out now! scene
Thx for the info I have just sent a mail to my publisher, will let you know about a reply. Sorry for the inconvenience..]]>
http://dhs.nu/bbs-scene/index.php?request=20263 http://dhs.nu/bbs-scene/index.php?request=20263 Posted by: s_t_s Wed, 23 Aug 2023 07:44:00 +0200
[scene] Re: Democyclopedia book out now! scene
perhaps I wasn't patient enough and my second copy will show up in the coming days too like for Paranoid.
They've been quick to answer email earlier, but stopped now when I finally gave up waiting and wanted a refund if they won't send a book. It's not a good sign.


Anyway my order was two english books, I received one in late June so still one to go.


Order: JPGBKINLK Placed on 03/15/2023 09:07:32
Democyclopedie - The Encyclopedia of Atari ST Demos e31.00 2 e62.00

Products
e62.00

Discounts
e0.00

Gift-wrapping
e0.00

Shipping
e16.00

Total Tax paid
e0.00

Total paid
e78.00


--
Anders Eriksson
ae@dhs.nu]]>
http://dhs.nu/bbs-scene/index.php?request=20262 http://dhs.nu/bbs-scene/index.php?request=20262 Posted by: evil Tue, 22 Aug 2023 22:01:00 +0200
[scene] Re: Democyclopedia book out now! scene
Can you tell what book is currently missing from your latest order? The publisher always replies to my messages, maybe I can help here.]]>
http://dhs.nu/bbs-scene/index.php?request=20260 http://dhs.nu/bbs-scene/index.php?request=20260 Posted by: s_t_s Tue, 22 Aug 2023 20:47:00 +0200
[scene] Re: Democyclopedia book out now! scene (Almost) the same happened to me, i ordered two and got one. Had to ask twice as well but i was being told they were actually out of stock and had to print new ones. I was more lucky than evil was and got my second copy a couple of days ago.

The Paranoid
]]>
http://dhs.nu/bbs-scene/index.php?request=20259 http://dhs.nu/bbs-scene/index.php?request=20259 Posted by: Paranoid Mon, 21 Aug 2023 11:08:00 +0200