mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 00:36:47 +08:00
Typos fixed, and reformulated a bit (#31)
This commit is contained in:
parent
43c188951c
commit
8e8c700b48
1 changed files with 2 additions and 2 deletions
|
|
@ -4,14 +4,14 @@ It is possible to call your assembly language code from Python. In fact,
|
|||
it can be insanely easy. It can also be difficult. What differentiates
|
||||
the two are the arguments you need to pass.
|
||||
|
||||
Python stores data in a very different way than C and therefore assembly
|
||||
Python stores data very differently than C and therefore assembly
|
||||
language. All Python data types are objects, which for sets and dicts
|
||||
can make things difficult and outside the scope of this book.
|
||||
|
||||
If you want to explore the subject deeply, we suggest
|
||||
[this link](https://realpython.com/python-bindings-overview)
|
||||
|
||||
## Simple EXample
|
||||
## Simple Example
|
||||
|
||||
Take this trivial C function:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue