![]() |
.. (לתיקייה המכילה) | |
When should you start Fibo and when should it run? | |
You should start Fibo after the user presses Enter at the beginning of the game. It should run constantly until the end of the game, except for handling interrupts or printing to the screen. |
How should we run Fibo? | |
You can run fibo in an endless loop in the main program and handle the rest of the program using keyboard and clock interrupts. |
When is it allowed to use busy wait? | |
You can use busy wait for I/O untill the player presses Enter to start the game. After that you can handle only prints with busy wait. This means that clock and keyboard should be handled using interrupts only. |
When should we use octal base and when should we use decimal base? | |
You should only use octal(!) base. |
Questions about the function scanf | |
You do not have to implement it. |
What is the maximal size of the board? | |
50 characters. |
How should we calculate the dice value? | |
(fibo_cur_num%lucky_num)+1 |
Who is responsible for initializing the X and Y labels? | |
You should initialize both the X and Y label to 1. |