• Login
  • Register
  • Dolphin Forums
  • Home
  • FAQ
  • Download
  • Wiki
  • Code


Dolphin, the GameCube and Wii emulator - Forums › Offtopic › Delfino Plaza v
« Previous 1 ... 27 28 29 30 31 64 Next »

The Crossroads of Destiny
View New Posts | View Today's Posts

Pages (6): « Previous 1 2 3 4 5 6 Next »
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Thread Modes
The Crossroads of Destiny
05-22-2012, 08:41 AM
#21
NaturalViolence Offline
It's not that I hate people, I just hate stupid people
*******
Posts: 9,013
Threads: 24
Joined: Oct 2009
That's not recursive at all.

This would be recursive (clearly I must have no life):
Code:
void main ()
{
     bool dontUnderstandSomething = false;
     int freeTime = ????;
     int timeTaken = 0;
     Subject subjectIDontUnderstand;

     //time variable, keep track of current time, keep updating it in a loop
     //if time = 8 A.M. set freeTime and call NewDay()
}

void NewDay ()
{
     ReadArticlesOnTopic(NewInterestingTopic());
}

void ReadArticlesOnTopic ()
{
     ReadLine();
     dontUnderstandSomething = ReadLine.Understand;
     timeTaken = ReadLine.Time;

     freeTime -= timeTaken;

     if (freeTime <= 0)
     {
    
     }
     else if (dontUnderstandSomething == true)
     {
          subjectIDontUnderstand = ReadLine.Subject;

          ReadArticlesOnThat(subjectIDontUnderstand);
     }
     else
     {
          ReadArticlesOnTopic(NewInterestingTopic());
     }
}

Subject NewInterestingTopic ()
{
     //generate a new random interesting topic
     //check if topic is in index, jump back to line 1 if it has, else continue
     //store topic in index
     //return topic
}
"Normally if given a choice between doing something and nothing, I’d choose to do nothing. But I would do something if it helps someone else do nothing. I’d work all night if it meant nothing got done."  
-Ron Swanson

"I shall be a good politician, even if it kills me. Or if it kills anyone else for that matter. "
-Mark Antony
Website Find
Reply
05-22-2012, 09:20 AM
#22
ExtremeDude2 Offline
Gotta post fast
*******
Posts: 9,317
Threads: 273
Joined: Dec 2010
(05-22-2012, 08:41 AM)NaturalViolence Wrote: That's not recursive at all.

This would be recursive (clearly I must have no life):
Code:
void main ()
{
     bool dontUnderstandSomething = false;
     int freeTime = ????;
     int timeTaken = 0;
     Subject subjectIDontUnderstand;

     //time variable, keep track of current time, keep updating it in a loop
     //if time = 8 A.M. set freeTime and call NewDay()
}

void NewDay ()
{
     ReadArticlesOnTopic(NewInterestingTopic());
}

void ReadArticlesOnTopic ()
{
     ReadLine();
     dontUnderstandSomething = ReadLine.Understand;
     timeTaken = ReadLine.Time;

     freeTime -= timeTaken;

     if (freeTime <= 0)
     {
    
     }
     else if (dontUnderstandSomething == true)
     {
          subjectIDontUnderstand = ReadLine.Subject;

          ReadArticlesOnThat(subjectIDontUnderstand);
     }
     else
     {
          ReadArticlesOnTopic(NewInterestingTopic());
     }
}

Subject NewInterestingTopic ()
{
     //generate a new random interesting topic
     //check if topic is in index, jump back to line 1 if it has, else continue
     //store topic in index
     //return topic
}

Yeah, I wasn't sure what you meant exactly.
Check out my videos (dead)
[Image: sig-22354.png]
Website Find
Reply
05-22-2012, 10:13 AM (This post was last modified: 05-22-2012, 10:14 AM by NaturalViolence.)
#23
NaturalViolence Offline
It's not that I hate people, I just hate stupid people
*******
Posts: 9,013
Threads: 24
Joined: Oct 2009
@Zee530

Both wikipedia and wikibooks have plenty of good pages for you to use.
http://en.wikibooks.org/wiki/Microprocessor_Design
http://en.wikipedia.org/wiki/Microprocessor_design
http://en.wikipedia.org/wiki/History_of_general_purpose_CPUs#1990_to_today:_looking_forward

Look up those topics on google scholar or follow the references at the bottom of the pages. That should get you going if you decide on this subject. The wikibook pages aren't very good so I wouldn't even bother reading them.
"Normally if given a choice between doing something and nothing, I’d choose to do nothing. But I would do something if it helps someone else do nothing. I’d work all night if it meant nothing got done."  
-Ron Swanson

"I shall be a good politician, even if it kills me. Or if it kills anyone else for that matter. "
-Mark Antony
Website Find
Reply
05-23-2012, 09:09 PM
#24
LordVador Offline
Christmas Vader
*******
Posts: 8,851
Threads: 1,908
Joined: Mar 2011
@Zee in the end what have you been planning to do? Like job I mean
[color=#ff0000][color=#006600]i5 3570K @ 4.5GHz/GTX 660 Ti/RAM 4GB/Win7 x64[/color][/color]
Find
Reply
05-23-2012, 10:49 PM (This post was last modified: 05-23-2012, 10:50 PM by Zee530.)
#25
Zee530 Offline
Above and Beyond
*******
Posts: 1,747
Threads: 12
Joined: Jan 2011
Job, eh? well not sure at the moment but right now even in school i do simple computer repair and maintenance for friends and strangers so, i dont know, something along the lines of an A+ technician. CCNA is something i also want to look at on future but right now, i'm yet to decide, still waiting for a sign.... Smile

Thanks for the references NV i'll look into them
......?????
Find
Reply
05-28-2012, 05:58 AM
#26
NaturalViolence Offline
It's not that I hate people, I just hate stupid people
*******
Posts: 9,013
Threads: 24
Joined: Oct 2009
You might be interested in this (stumbled upon it by accident and it made me think of this thread): http://www.agner.org/optimize/microarchitecture.pdf
"Normally if given a choice between doing something and nothing, I’d choose to do nothing. But I would do something if it helps someone else do nothing. I’d work all night if it meant nothing got done."  
-Ron Swanson

"I shall be a good politician, even if it kills me. Or if it kills anyone else for that matter. "
-Mark Antony
Website Find
Reply
05-28-2012, 06:04 AM
#27
Zee530 Offline
Above and Beyond
*******
Posts: 1,747
Threads: 12
Joined: Jan 2011
Read the contents, very nice, thanks again. It seems to be book 3 in a series of 5, i'll also look for the other 4
......?????
Find
Reply
05-28-2012, 06:39 AM
#28
NaturalViolence Offline
It's not that I hate people, I just hate stupid people
*******
Posts: 9,013
Threads: 24
Joined: Oct 2009
*facepalm*

Look at the url: http://www.agner.org/optimize/microarchitecture.pdf
Now take off the end to navigate to the directory above it: http://www.agner.org/optimize
Now take a look around, there it is: http://www.agner.org/optimize/#manuals
"Normally if given a choice between doing something and nothing, I’d choose to do nothing. But I would do something if it helps someone else do nothing. I’d work all night if it meant nothing got done."  
-Ron Swanson

"I shall be a good politician, even if it kills me. Or if it kills anyone else for that matter. "
-Mark Antony
Website Find
Reply
05-28-2012, 05:37 PM
#29
Zee530 Offline
Above and Beyond
*******
Posts: 1,747
Threads: 12
Joined: Jan 2011
Oh, my bad
......?????
Find
Reply
08-04-2012, 01:34 AM
#30
Zee530 Offline
Above and Beyond
*******
Posts: 1,747
Threads: 12
Joined: Jan 2011
I managed to convince my supervisor to allow me to go back to my initial processor architecture project Smile but he said under one condition, i write a convincing proposal.

A proposal is supposed to contain:
1. Aims and objectives
2. Introduction
3. Scope of the Study
4. Significance
5. Research Methodology
6. System Model/ Program

Now, i can come up with something for 1-5 but for 6 i'm having problems deciding what to design there. The only idea i have right now is to design a program similar to cpu-z that can read the current frequency that the processor is running at, as well as bus speed and multiplier but i wanna know if anybody has any better ideas than this, something to make the guy say 'WOW, he may look like an idiot but he knows what he's doing'.

Remember anyone who helps me with anything during the course of my thesis will have their username included in my acknowledgements Tongue
......?????
Find
Reply
« Next Oldest | Next Newest »
Pages (6): « Previous 1 2 3 4 5 6 Next »


  • View a Printable Version
  • Subscribe to this thread
Forum Jump:


Users browsing this thread: 1 Guest(s)



Powered By MyBB | Theme by Fragma

Linear Mode
Threaded Mode