The program will simulate the playing of the game, with two players (player 1 is the user, player 2 is the computer). Output: For the output of the main program, you should print each play to a text log file and indicate the eventual winner.
The program will simulate the playing of the game, with two players (player 1 is the user, player 2 is the computer). Output: For the output of the main program, you should print each play to a text log file and indicate the eventual winner.
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Needs to be done in Assembly for Raspberry Pi 3B.
![changes. Obviously approach 1 is easiest and
approach 3 is hardest.
The program will simulate the playing of the game,
with two players (player 1 is the user, player
2 is the computer).
Output: For the output of the main program, you
should print each play to a text log file and
indicate the eventual winner.
You ask: Do you have a J?
Computer says: Go Fish
You draw a 4
Computer asks: Do you have a 4?
You say: Yes. I have a 4
Computer books the 4 and lays down one pair of 4
Etc...
I recommend writing each assembler function in a
separate .s file. If you're running from the Pi
command line, definitely write a makefile to
perform the compilation.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Ff7e5cd48-1764-4e35-a037-3f24ff15348c%2F8a6da393-c924-499c-96af-a607246b6869%2Fmwf476j_processed.png&w=3840&q=75)
Transcribed Image Text:changes. Obviously approach 1 is easiest and
approach 3 is hardest.
The program will simulate the playing of the game,
with two players (player 1 is the user, player
2 is the computer).
Output: For the output of the main program, you
should print each play to a text log file and
indicate the eventual winner.
You ask: Do you have a J?
Computer says: Go Fish
You draw a 4
Computer asks: Do you have a 4?
You say: Yes. I have a 4
Computer books the 4 and lays down one pair of 4
Etc...
I recommend writing each assembler function in a
separate .s file. If you're running from the Pi
command line, definitely write a makefile to
perform the compilation.
![Go Fish
You will write a program that simulates the card
game "Go Fish". The main driver, written in
assembler, will call the individual functions to
shuffle the deck of cards, deal the cards, ask for a
card, and lay down the cards. For this
implementation, we will use the variation where
players
give just one card when asked, and lay down pairs.
Basically, the players take turns asking the
other player for a card of a certain rank, which the
other player must hand over if they have such
a card. The players' goal is to collect matching pairs
of cards (of the same rank), placing them
on the table. Make sure to keep score of how many
pairs each player has. Because the number
of cards each player may hold at any moment in
time can be anything (less than 47 of course),
you will need to treat the players' hands carefully.
Possible approaches are: 1. Allocate 47
element array for each player and keep track of the
cards in hand; 2. Use the stack to store the
players' hand; or 3. Dynamically resize the players'
hands each time the number of cards
changes. Obviously approach 1 is easiest and](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Ff7e5cd48-1764-4e35-a037-3f24ff15348c%2F8a6da393-c924-499c-96af-a607246b6869%2F24o1rzro_processed.png&w=3840&q=75)
Transcribed Image Text:Go Fish
You will write a program that simulates the card
game "Go Fish". The main driver, written in
assembler, will call the individual functions to
shuffle the deck of cards, deal the cards, ask for a
card, and lay down the cards. For this
implementation, we will use the variation where
players
give just one card when asked, and lay down pairs.
Basically, the players take turns asking the
other player for a card of a certain rank, which the
other player must hand over if they have such
a card. The players' goal is to collect matching pairs
of cards (of the same rank), placing them
on the table. Make sure to keep score of how many
pairs each player has. Because the number
of cards each player may hold at any moment in
time can be anything (less than 47 of course),
you will need to treat the players' hands carefully.
Possible approaches are: 1. Allocate 47
element array for each player and keep track of the
cards in hand; 2. Use the stack to store the
players' hand; or 3. Dynamically resize the players'
hands each time the number of cards
changes. Obviously approach 1 is easiest and
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 3 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education