![]() |
they do use Assembly language, that is what one of the access employees told me on their live chat section. He wasn't very sure though, he hesitated between C and Assembly and then said it was Assembly.
Quote:
as software programmer, i can easily imagine it :) since everything is binary, there cannot be random imperfections (actually the concept of "radnom" doesn't really exists in computers) so imperfections themselves are implemented into algorithms, then coded. look what assembly (ASM as commonly called) looks like: Code:
.model small Imagine millions of lines of that!! This may help some of us understand why sometimes there are bugs and why we should let Access take their time for every new release ;) |
.... and yes, Digital Sound Processing is 100000% maths and accoustics.
So tomer, you weren't far :) ->the first step is analyzing sound characteristics -> create a conceptual model -> write the algorithm -> code it (ASM, C or whatever...) -> burn to EPROM ;) |
Thx Hatembr....
So do they litrally use millions of lines of code? If so.....then surely they cant program all that.....they must have other software/tools to write it once the basic is down? Plz excuse my naivety.....but im beginning to find this an interesting topic. Some peopel build kit cars.....one day I'd like to try my hand at building a softsynth. Where can I go to learn about using computer language to make synths? Are there any courses on the topic? DS |
millions? well may be a bit exessive, look, to display a simple asterisk character on the screen using ASM you will need this code:
Code:
;ASM example i guess there is easily hundreds of thousands lines of code in our synths. Of course, a good programmer never rewirtes his code, he has generic libraries (modules) he can customize and reuse (reusability is a very important concept in programing) . Now if you want to know how to program your own synth, the first thing you will need to know is Digital Sound Processing which is quite hard (i tried to learn it but i quit! too much electronics in there). Then you will have to write an algorithm => the different scenarii of your "program", and then code it. If you tell me what u know in computers and programming, i can help u start, as there are tons of free tutorials on the net. |
hey hatembr: total ignorance here, but i've always wondered like in your example, what determines that those code lines are referring to an asterik, and not say, a middle c on a keyboard or something?
also, i thought assembly language was just raw 0's and one's. what you're describing looks to be at least one level higher than that. i guess my question would be, if 00011100011110000 means something - how is it determined what it means. and with only one's and zero's to work with, how can a number refer to a sound, a picture, or anything else for that matter? like i said - total ignorance. :oops: digital screams - a lot of the softsynths at KVR are made with a program called synth-edit, it's not supposed to be real efficient, but you could google it up to give it a try. |
Binary 1's and 0's are how the data is stored. Assembly language is the actual instruction set of manipulating memory and executing commands.
|
Im studying this stuff at University......Learning to create simple DSP (For FX etc..) and am having to get my head around Binary, hexidecimal, learning that all mathematics in binary are performed by addition (what a headfuck!)
And then there's the electronics side of things......jeez! |
Quote:
Code:
mov dl,2ah ;moves de value 2ah to register dl Quote:
So, behind the "mov" instruction, there is a binary value, behind the "DL" register name, there is also a binary value , and so on. After you finish your "symbolic" coding, you move to the "compilation" phase where your ASM compiler will translate those text-characters (we understand) to their real binary values so that the CPU can understand them. ASM reflects what really happens when you execute anything on your computer, that is what the CPU really does, it moves a value into one register, another value into another register, calls an interruption and so on. ;) Quote:
As far as sounds go, after a long analyzing phase (the hardest work), they can be translated into instructions the CPU in the virus executes and sends to the appropriate part of the machine to make it audibale. But at the beginning, it is just a set of instructions. |
Bear in mind that computers/DSP nowadays are extremely fast in executing literally billions of lines of codes in mere seconds.
In the old days (the furthest I can look back is the 80's, being just 25 yrs old) it took hours to load relatively simple applications. Lol, the Commodore 64 sometimes took 30-40mins to load up a basic 8-bit game. The SID chip, though, wow..... :) Still loved, 20 years on. |
Quote:
|
All times are GMT. The time now is 01:52 AM. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2002-2022, Infekted.org