Top-Rated Free Essay
Preview

Assembly Chess

Powerful Essays
3355 Words
Grammar
Grammar
Plagiarism
Plagiarism
Writing
Writing
Score
Score
Assembly Chess
Assembly Chess

1 Introduction
The game of chess dates back to the 6th century in South-East Asia. Originally played with ceramic and resin, we thought it would be interesting to use modern tools to see if we could code it for the digital world using the
Raspberry Pi.

2 Coordinating Our Work & Team Dynamics
We were aware from the inception of our idea that its success depended on having enough time, and consequently we decided to get the assembler and emulator nished as early as possible. Early on, we decided to use the games room inside our hall to work in, because it was usually empty, had a large HDMI screen to test on, and was geographically close to each of us. Our strategy for the compulsory part was simply working full time on the project, whilst thinking ahead about what equipment we needed for the extension. We tried to be resourceful in this respect. For example, we used the HDMI television screens inside our halls of residence to test our display, and we did not even need to purchase HDMI-HDMI cables since we found televisions that already had them attached. When we realised we needed extra parts (primarily buttons and extra wires and resistors) we did some research on prices and split our orders into the parts which could be found on RS and Maplin, and the parts that could only be found on Amazon
(the buttons), before sending the former to Tristan and buying the latter ourselves. This meant we could minimize our spending on components.
Before we decided on our extension, we had been optimistic about our timing, and indulged in splitting to consider dierent ways of implementing emulate. From assemble onwards, we both gelled as a team and became more focused. We decided we needed to delegate our programming better, so our strategy shifted from allowing each person to consider dierent implementations of code, to deciding on the specication for the code beforehand, as a team, before delegating each other to write dierent sections of it. We found that merging the contributions from each team member into the nal result, as opposed to choosing one person's code and trying to bring everyone else's code into it, resulted in completing the code in much less time.
We acknowledged our dierent backgrounds and tried to take advantage of our dierent skills - we were all procient in programming C for the assembler and emulator, but parts of the assembly chess were more suited to some than others. Gun had developed games before and had the most experience in assembly, so it was decided that he should work on the game logic. Xu, who liked debugging and tackling new ground, was chosen to focus on the display. Bora, who came up with our image compression scheme, was chosen to write the C program dcd_gen and became responsible for graphics, including the storage of the piece templates using assembly directives, and writing draw_square(), which is used to generate square images on the screen.
Despite focusing on the areas which most appealed to each of us, we also made sure to go over each other's work and help with other sections of the code. Not only did this mean we would cross-check and pick up mistakes that had been missed, but also that we were each given the opportunity to learn about all aspects of game development in assembly. For example, we debugged Gun's game logic with our graphics, and Xu wrote the promote_pawn() method, which is called directly by the game logic.
We noticed that our teamwork started o relatively fragmented and became more cohesive as the code grew.
This was partly out of necessity - having completed our separate parts we needed to make sure they came together
- but mostly because as our game became more complex we increasingly had to consult each other's knowledge on design details and bugs. The three of us started coding on dierent laptops, since we were at our most productive when all three of us were actually coding and early on in the project producing functioning code was our greatest priority. Later on when we were merging all of our code together, it became necessary to use only one laptop to do the merging. Xu and Bora also found they worked well together, and discovered that pair programming was highly

1

eective whilst working on the display methods. Since we were often sitting at the same place for hours each day, pair programming meant that when one person's concentration drifted, the other could re-establish focus.
In a small team of three, we did not feel the need to have a set leader role, preferring to discuss everything and make decisions together. We feel that this has really worked well as each team member felt free to contribute and engaged equally with the project. It also meant the workload was fairly split between the three of us. As we bonded as a team our communication increased - we used all channels including phone, email and social media and we found ourselves encouraging each other to focus and implement extensions. The greatest motivation for our progress was not moving chess pieces around in digital space - it was seeing our hard work actually come together and producing output on the screen.

3 Extensions to the Assembler & Coding Practice
To support a program of this scale and scope, we had to extend many aspects of our assembler:



Method calling was vital, so we decided to add support for the Branch with Link instruction.

Figure 1: Calling a method



In order to save registers when calling methods, and to take full advantage of what we had already implemented, we decided to use our single data transfer instruction to push and pop registers. As we had fully implemented single data transfer, enabling the writeback bit to be set, there was no need to spend time implementing block data transfer for this purpose.



Fully implementing single data transfer meant we could easily use a stack. The stack pointer is initialised in init_pins() to the start of a block of 1KB. This block resides below the declarations of all the global arrays that correspond to our chess pieces.



We thought for a long time about how to implement global variables, which we use heavily within our program for both game constants and graphics. We could not store them in arbitrary locations, since the values would have been interpreted as instructions and executed.



We decided to support the DCD and ADR directives, as this was closest to real ARM assembly. DCD allowed us to store words at specic locations in memory, and ADR allowed us to load the physical address of any label into a register.



However, after watching our program crash, we realised that there must be a limitation on the ADR instruction, as the oset from the program counter must t inside the 8 bit second operand for data processing instructions. This means in general there could only be an oset of 255 bytes between the program counter at the time of the ADR instruction and the variable itself. Our solution to this was to have setters and getters for global variables located next to the variables themselves, since functions can be called without restrictions in distance.



Instead of dotting them around the program, we strategically located our global variables at the end of our code, with the exception of the GPIO buer data, which has a special alignment requirement and hence is placed at instruction number 0x10.

Figure 2: A  getter function that demonstrates using STR, LDR to push and pop registers prior to fetching a global variable.

2



The full range of conditions on all mnemonics is supported, and not just the conditions specied on the branch instruction. This would enable more concise code at little extra cost. We also wrote a full implementation of the shifter, allowing for register shifts, and added full support for comments and labels, which we implemented by parsing for semicolons and colons. Working in a language as low level as assembly meant comments were vital in annotating our code so we could understand it later.



To improve the readability of our code when dealing with immediates, we decided to use characters (for example `K' for King, `Q' for Queen) to represent the piece types in our assembly. Hence we added support for ASCII character immediates. Each piece type intuitively corresponds to a dierent character, reducing the likelihood of programmer errors when dealing with pieces.



Anticipating that the code was going to get messy very quickly, we established several protocols to standardise our program and make the code more elegant and well organised. We established protocols for pushing and popping registers, deciding to use r0 for passing arguments to functions, and protocols for calling methods.
We also decided that all our global variables would start with _g_, and all subroutines within methods would begin with the method name, since we anticipated that this would avoid conicts and confusion when calling methods. 4 Game loop
The skeleton of our game is the .main method, which is a standard game loop implemented in assembly. After we display our board, manage_input() loops until an input is detected from the player. The boolean_g_is_clicked reects whether the player has pressed the select button and determines if the input needs to be processed by the game logic method process(). This continues until checkmate occurs, at which point a game over message is displayed, and the game resets by entering a new game.

Figure 3: Our game loop

5 Input
We really wanted to avoid using third party code, hence we aimed from the start to write everything by ourselves.
We have stuck true to our resolution. So instead of using USB drivers (or in fact any third party code at all) the input from the player is obtained by reading from GPIO pins which are wired up to momentary push buttons.
After much discussion, we decided the optimal input scheme would be to have six buttons. Four of these are directional (left, down, up, right) to allow cursor movement, the fth is a select button for making moves, and the sixth is a reset button to restart the game. We use a 10k Ohm resistor in the circuit to avoid pulling too much current when the button is pressed. To ensure the safety of our Pi board, we also added a 1k Ohm resistor before the GPIO pin, to prevent the risk of short-circuiting the board if we accidentally set a pin to be an output pin.

3

During our testing and debugging of the game, we realised that the length of an average single click of a button set the GPIO pin three times, causing the current position on the board to move three squares rather than one.
We solved this by writing a wait function that delays the detection of input from the player.

Figure 4: GPIO pin circuit (eLinux).

6 Graphics
A key decision we made was how to store the images we were going to print on the screen, since we had to draw
Kings, Queens, Bishops, Knights, Rooks and Pawns. The most ecient implementation would have been to have a function which could draw each piece, but due to the non-linear shapes that make up the pieces, we quickly decided this was infeasible and we would need to store the images on some kind of pixel-by-pixel basis.
However, upon calculating how much memory we would need if we stored one pixel per memory word, we quickly realised that this was too inecient. As we could not do halfword loads and stores from memory, we chose 32 bit depth for our colours for convenience. At 80 * 80 pixels per square our six dierent piece types would have resulted in 38,400 lines of memory allocation directives.
We thought that there must be a way to decrease this. Observing that each image was made up of long sequences of pixels with the same colour, we chose to apply a basic compression scheme: for a given sequence, the number of pixels is encoded along with the colour in a single word. The bottom 2 bits give the colour, which can be one of
`background', `piece', or `outline', and the remaining 30 bits represent the number of pixels. This would decrease dramatically the directives to just over 1,500.
As we did not really want to write 1,500 lines of just directives either, we decided to automate it. We wrote a small C program (dcd_gen) to apply this compression to the `ASCII-art' output (from a photo editor) of our piece images, in order to reduce the complexity in both reading and manually editing the images. Although we had to spend some time writing this tool, it was worth it as we could now automatically produce compressed images that were ready to use in our program almost instantaneously. This meant that any future changes to the images of the pieces would be easy to incorporate.

Figure 5: A helper method within dcd_gen.c, a tool that automatically takes ASCII art and compresses it directly to assembly directives.

4

7 Output
The most dicult part of the I/O was displaying our chess board on the screen. The rst issue we encountered was simply displaying anything on the screen.

Alex Chadwick's Baking Pi tutorial had given us an insight into

the overall process - writing a block of data including the frame buer width, height, and colour pitch, into a specic mailbox address, receiving the pointer to the frame buer returned by the GPU, and checking for errors and non-cooperation from the GPU at every stage.
However, it seemed that no matter how much we looked at our function set_frame_buer(), we could not get it to retrieve the framebuer. Our rst breakthrough was realising the kernel was loaded at address 0x00008000, and not at zero like we had assumed. This was due to a revision by the manufacturers, and we discovered that could be reverted by including the ag kernel_old=1 inside the cong.txt le.
This mattered because we knew the address of our message to the GPIO had to contain zeros in the bottom 4 bits, due to the fact that it would be bitwise or-ed with the mailbox number we were writing to before we wrote it to the mailbox. If the bottom four bits were not zero, we would not be able to tell the GPU the number of the mailbox we wanted to write to. In the end our solution was to make sure our block of data was allocated at the start of our kernel, and manually pad the lines before it with 15 instructions to ensure zeros in the last 4 bits.
Another breakthrough was discovering the importance of the cong.txt le.

We came across an article on

eLinux that gave a complete list of the ags that could be set inside this le, which gave us the option to select resolutions, compatability with dierent display standards (CEA, DMT). Through experimentation with the HDMI display, we realised that vWidth and vHeight within our data block (the elds that Alex Chadwick  had no idea about) corresponded to the virtual width and height of our display, as opposed to the Width and Height, which corresponded to the actual screen resolution.
We were very excited after we managed to draw plain colour and lines on the screen by writing directly to the GPU buer.

In case that did not work, we had several backup plans, including writing to our own pixel

buer before copying it serially to the framebuer, and using LCDs instead of HDMI. Even though we eventually completed everything, this practice was useful as it meant we were less stressed about our bugs and ensured that we would have options if the time restraint meant we had to move on.
The solution to getting the display to work seemed to be just extensive research and pure persistence.

8 Gameplay, Testing & Example
Chess is a complicated game, and writing it in assembly proved to be a challenging task. In order to avoid the dicult prospect of debugging the chess game using just the LED (as the graphics were not nished), we decided to write a prototype of the game in C rst to eradicate semantic errors. This was worth it as it saved time and eort debugging the code later. We then straightforwardly rewrote the code in assembly, focusing on making sure the syntax was correct as we did not have to think about the game at the lowest level. The translation process taught us how structures in C could be conveyed in assembly, including if-else, getters and setters, switch statements and arrays. The easiest code to test was undoubtedly our compression program written in C, since we had the tools within our IDE Eclipse available to us. When debugging our assembly, it was useful to strategically trigger the LED light to determine where the ow of the code was going. After the game was properly displaying on the screen, we found that simply playing it many times unearthed most of the bugs.

5

6

9 Summary
Because our project required knowing the ARM architecture beyond what we had studied in class, we used online resources (such as the ARM documentation, BCM2835 ARM Peripherals manual, Alex Chadwick's Baking Pi,
Raspberry Pi forums and Archlinux/ eLinux) extensively.
Predictably, we faced many problems of dierent kinds when implementing the game. The main problem with
I/O was nobody in our knowledge had written a game in assembly without an operating system before, and we were often searching the internet for hours to work out, for example, why the GPU was not giving us a valid framebuer pointer. It did not help that the Broadcom peripherals manual was lled with little errors, and Baking Pi was

written for the previous generation Pi. The graphics required using various software simultaneously - GIMP, gedit, vim and our own dcd_gen - in addition to an artistic eye for detail. On the other hand, the chess logic itself was dicult to implement simply due to the complexity of the game, its many special moves and the fact that we were doing it all in low level assembly.
We had to think ahead at every stage in the development process, from specifying the code together beforehand to thinking about the electronic parts we had to order.

We could have extended the language to be a perfect

replica of the actual ARM assembler, but as this would give us no time to implement our actual chess game, we had to make trade os and work out the functionality of the assembler that we actually needed. As we were aiming for an entertaining and enjoyable game, we had to think not only about the elegance of the code but also user experience. We enjoyed the unexpected fun of being creative and coming up with the colour schemes for pieces, players, background and selected squares. We have more ideas in mind, and we are currently considering further extensions including pawn promotion.
We started the project expecting to improve our understanding of the ARM7TDMI, Broadcom BCM283 SoC and the ARM assembler. We came out with much more than we had anticipated - despite venturing into a very low level realm we have managed to successfully implement a high level game.

Working constantly with each

other for many hours every day, we have bonded as a team and learnt the benets of forward planning and good communication. We used the opportunity to build up these teamwork skills in the rst half of the project whilst working on the emulator and the assembler, and found them to be instrumental whilst developing the extension.
We are elated that we have actually coded up our idea and ended up with a working game of chess capable of running on a machine without any operating system.

7

You May Also Find These Documents Helpful

  • Better Essays

    Chess was developed in China in the 2nd century B.C. but it is not until the 7th century that there is a reference…

    • 2892 Words
    • 15 Pages
    Better Essays
  • Good Essays

    Tda 2.13 1.2

    • 748 Words
    • 3 Pages

    Displays can be in many forms, they could be on a board, hanging from ceiling, window displays or laid out on a table.…

    • 748 Words
    • 3 Pages
    Good Essays
  • Good Essays

    disagreed with the whole idea and the television remained . Even though my mother had…

    • 1483 Words
    • 6 Pages
    Good Essays
  • Good Essays

    Rules of the Game There was a Chinese kid that moved to the U.S, and she was interested to play chess. She learned how to play the game. She was great at beating the other players, and she had a talent for playing chess. When she was 9-years-old.…

    • 347 Words
    • 2 Pages
    Good Essays
  • Satisfactory Essays

    The location I chose was the Northwest Expressway Target. This location was away from areas I normally shop and figured I would not run into people I worked with. I wanted to make a quick outing because of my lack of comfort level. My roommate did join me to give me support.…

    • 906 Words
    • 4 Pages
    Satisfactory Essays
  • Powerful Essays

    Case Bellagio Questions

    • 1177 Words
    • 5 Pages

    D. Observation and recording of gaming and other areas by closed-circuit television. This control was designed to…

    • 1177 Words
    • 5 Pages
    Powerful Essays
  • Powerful Essays

    The History of Bowling

    • 2238 Words
    • 9 Pages

    The Romans, Phoenicians, and Carthaginians were also believed to have played the game in some fashion, but there is no proof available. However, historians know that in Julius Caesar's time period, around 50 B.C., people in the Alpine regions of Italy played a game called "bocce," which is considered the Italian form of bowling and is still played today. (Pezzano 13)…

    • 2238 Words
    • 9 Pages
    Powerful Essays
  • Good Essays

    Sarco

    • 2476 Words
    • 10 Pages

    People could think that the Badminton Sarcophagus was made in the Eastern Mediterranean, because the material used for its carving is a type of marble found in Asia Minor, Phrygia. However, the reality is that this sculpture was…

    • 2476 Words
    • 10 Pages
    Good Essays
  • Good Essays

    Government Tracking

    • 578 Words
    • 3 Pages

    television or whatever the device may be. Technology has got so advance that it can lead to the…

    • 578 Words
    • 3 Pages
    Good Essays
  • Satisfactory Essays

    Common Core Essay

    • 441 Words
    • 2 Pages

    Our last change that we wish to see if for teachers to offer extra help in school. If we did away from the common core then we could slow down on certain criteria in the classroom. When teachers do this, they can teach the same lesson in different ways such as: auditory, spatial, linguistic, and kinesthetic. If teachers take the time to do this and a certain student still doesn’t understand then this student can be placed with a teacher that will work with them one on one.…

    • 441 Words
    • 2 Pages
    Satisfactory Essays
  • Good Essays

    The first game similar to basketball may have been played by the early people of ancient Mexico as early as 500’s. The Mayan people used the decapitated skulls of their enemies as the ball. They also made sacrifices if you did not win the game.…

    • 488 Words
    • 2 Pages
    Good Essays
  • Satisfactory Essays

    Essay On Field Hockey

    • 571 Words
    • 3 Pages

    In 510 B.C., a group of people in Ancient Greece had played a field-hockey like game with a horn and any round object that their environment had available as well as the Gaelic sport of hurling which is closely related to field hockey.1 In East Asia, a sport played with a curved-shaped wooden stick and a ball was also played in around…

    • 571 Words
    • 3 Pages
    Satisfactory Essays
  • Good Essays

    G52FSE revision

    • 2357 Words
    • 10 Pages

    generally working as a team, this would cause all sorts of problems - we need…

    • 2357 Words
    • 10 Pages
    Good Essays
  • Satisfactory Essays

    The Asia-Pacific Region will lead the world in IPTV usage in the next 5 years…

    • 456 Words
    • 2 Pages
    Satisfactory Essays
  • Good Essays

    electrical gadget

    • 788 Words
    • 3 Pages

    Television can be used as a computer monitor through three main steps that are considerations about condition of TV and computer, creating the connection between television and computer, and changing computer settings.…

    • 788 Words
    • 3 Pages
    Good Essays

Related Topics