Fixed a spelling mistake and decorated CONTRIBUTING.md

pull/31/head
Akash Shende 9 years ago
parent 73d966d7d9
commit deefd138dd

@ -5,19 +5,19 @@ If you want to contribute to the [linux-insides](https://github.com/0xAX/linux-i
1. Press fork button: 1. Press fork button:
![fork](http://oi58.tinypic.com/jj2trm.jpg) ![fork](http://oi58.tinypic.com/jj2trm.jpg)
2. Clone the repo from your account with: 2. Clone the repo from your account with:
``` ```
git clone git@github.com:your_github_username/linux-insides.git git clone git@github.com:your_github_username/linux-insides.git
``` ```
3. Create branch with: 3. Create branch with:
``` ```
git checkout -b "linux-bootstrap-1-fix" git checkout -b "linux-bootstrap-1-fix"
``` ```
4. Make your changes. 4. Make your changes.

@ -170,7 +170,7 @@ Implementation of the `memcpy` is easy. At first, it pushes values from `si` and
memcpy(&boot_params.hdr, &hdr, sizeof hdr); memcpy(&boot_params.hdr, &hdr, sizeof hdr);
``` ```
So `ax` will contain address of the `boot_params.hdr`, `dx` will contatin address of the `hdr` and `cx` will contatin size of the `hdr` in bytes. memcpy puts address of `boot_params.hdr` to the `di` register and address of `hdr` to `si` and saves size in stack. After this it shifts to the right on 2 size (or divide on 4) and copies from `si` to `di` by 4 bytes. After it we restore size of `hdr` again, align it by 4 bytes and copy rest of bytes from `si` to `di` by one byte (if there is rest). Restore `si` and `di` values from the stack in the end and after this copying finished. So `ax` will contain address of the `boot_params.hdr`, `dx` will contain address of the `hdr` and `cx` will contain size of the `hdr` in bytes. memcpy puts address of `boot_params.hdr` to the `di` register and address of `hdr` to `si` and saves size in stack. After this it shifts to the right on 2 size (or divide on 4) and copies from `si` to `di` by 4 bytes. After it we restore size of `hdr` again, align it by 4 bytes and copy rest of bytes from `si` to `di` by one byte (if there is rest). Restore `si` and `di` values from the stack in the end and after this copying finished.
Console initialization Console initialization
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

Loading…
Cancel
Save