From 86f7935d96debd2defeed4cd67f2dedc157fec7f Mon Sep 17 00:00:00 2001
From: kekeandzeyu
A convenient shorthand for writing long sequences of bits. -
+A convenient shorthand for writing long sequences of bits.
Check the powers of the base. For base-4: 256, 64, 16, 4, 1. -
+Check the powers of the base. For base-4: 256, 64, 16, 4, 1.
How many multiples of 64 fit in my number (73)?
@@ -1168,20 +1166,20 @@ operationsSmall memories of a fixed size.
+Small memories of a fixed size.
Can be read or written.
+Can be read or written.
Limited in number.
+Limited in number.
Very fast and low power to access.
+Very fast and low power to access.
Registers | @@ -1207,25 +1205,25 @@ operations
Some important notes about registers:
Each ISA has a predetermined number of registers, registers are -built in with hardware.
+Each ISA has a predetermined number of registers, registers are + built in with hardware.
Register denoted by 'x' can be referenced by number (x0 - x31) or -by name.
+Register denoted by 'x' can be referenced by number (x0 - x31) or + by name.
Registers have no type.
+Registers have no type.
Register zero (x0 or zero) always has the value 0 and cannot be -changed! Any instruction writing to x0 has no effect!
+Register zero (x0 or zero) always has the value 0 and cannot be + changed! Any instruction writing to x0 has no effect!
In high-level languages, number of variables limited only by diff --git a/Writerside/topics/Python-Programming.md b/Writerside/topics/Python-Programming.md index 55fc3d0..f727128 100644 --- a/Writerside/topics/Python-Programming.md +++ b/Writerside/topics/Python-Programming.md @@ -309,8 +309,7 @@ for key in list(dict.keys()):