Re: New Super Famicast & NesterDC SE releases
you cannot ban someone that is not doing anything wrong, and I am not doing anything wrong
therefore you cannot ban the person unless they are flaming constantly which I am not doing
so in all honesty, you can't ban me of NO REASON, and that post to me and clessy you made
you should be ban for that then, since it is also pointless, well then you should be banned
to speud.
Re: New Super Famicast & NesterDC SE releases
[quote author=speud link=board=dcemu;num=1082494155;start=0#9 date=04/23/04 at 05:50:37]so whats the story? clessy and demoniusx are the same guy or one of them is more stupid than i thought?
anyway i think that would be a good idea to ban both, their posts are so useless...[/quote]
You mean excatly like the one you just posted? I'm tired of all you coders and your stupid elitist ways. No offense to coders who arent assholes tho.
Re: New Super Famicast & NesterDC SE releases
[quote author=Clessy link=board=dcemu;num=1082494155;start=0#11 date=04/23/04 at 12:57:43]
You mean excatly like the one you just posted? I'm tired of all you coders and your stupid elitist ways. No offense to coders who arent assholes tho.[/quote]
ian micheal and black aura are the only nice coders I have known, they never gave me proplems, it seems like the other coders have ego trips and take out on people who cannot code.I agree with you that most coders in the dc realm are elitist.
Re: New Super Famicast & NesterDC SE releases
if elitist means someone who doesnt like people who are always negative without being productive then yes im one of the most elitist guy i think, but that has nothing to do with the fact im a coder.
Re: New Super Famicast & NesterDC SE releases
And when the new VMU Tool is released DemoniusX and Clessy will happily burn it with all the saves downloaded from speud his site ;).
Speud isn't elite at all, he is just realistic. C'mon, keep it clean. I don't expect you are contributing and you don't need to, just try to be a bit less negative unless with good arguments.
Re: New Super Famicast & NesterDC SE releases
[quote author=Storminator16 link=board=dcemu;num=1082494155;start=0#7 date=04/23/04 at 03:25:08]Please, just ban him. Â*This isn't cool, Cless.[/quote]
Agree.
???
It's less fun reading the posts here if someone's going to be a crazy poster, without any real message / content, like this (my) one Â*>:(
What's up with him?
It makes no sense and gives me a bad feeling about the newbs visiting the scene when the atmosphere on these sites turns bad.
@Cless:
Plz give some useful suggestions or sth similar, if a program isn't designed like you want it to be
...or learn SH4 asm ;D
Re: New Super Famicast & NesterDC SE releases
You're so mindless you cant even see I didnt start the fight. Anyways I'm not a coder. I looked into C in late middle school years and early highschool years and I just couldnt bare it. Tons of hrs for lil results. So now i'm into Pre Production Video Editing.
Re: New Super Famicast & NesterDC SE releases
look.. scherzo is being realistic..
He can try to code the cpu core in assembly, and I can put money on it
if he tried, it would probably end up slower than compiled C..
He's never done it before.. and it's not an easy undertaking..
To gain speed first you need to write your assembly based on
the design of the cpu.. How it does it's branch prediction, and
pre-fetching, keep your code inside the cache's..aligning it on
cache lines... creating queues.. for data writes/fetches..
and it's easy to trash the cache on the SH4..
But the 6502/816 is so simple I doubt that re-coding the core
to assembly will make much of a difference.. someone would
probably be better off going into the code and getting rid of
all those 8bit/16bit seq. reads, and writes and make them 32bit..
try to burst as much as possible, space the rom image in ram
away (page aligned) Â*from the variables so the pages can kept
open on the sdram,
the same would go for any data thats simultaneosly being accessed..
try to move as much of the video engine as possible to the PVR, and
DMA engine.. even interleaving the CPU/Video emulation with the screen
drawing..
Use global/static variables like crazy, use shifts/logic instead of mults/divs/math..
get rid of any floating point, ALL typecasting.. make all
the vars 32bit simplify the code, none of that
50 things happens on one line deal..
Ugh.. my ears a bleeding...
And the point was.. it's not such an easy task..
you gotta have lots of free time to pull that off
Re: New Super Famicast & NesterDC SE releases
Why hasnt anyone used underclock on Snes yet they have on Genesis. Genesis emulators are rather fast right now they just lack features like saving.
Re: New Super Famicast & NesterDC SE releases
thanks kamjin, that was very instructive.