diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2022-08-19 22:58:37 +1000 |
---|---|---|
committer | Jim Mussared <jim.mussared@gmail.com> | 2023-06-08 17:54:24 +1000 |
commit | 5fd042e7d1610b4d42acfc523441468f2ac28c6f (patch) | |
tree | 87903a5cec5409b89f38fa7d0809d80ca7b127d5 /examples/unix/machine_bios.py | |
parent | 9d7eac07138b6e02f4c0775dc70f36fdd69432a2 (diff) | |
download | micropython-5fd042e7d1610b4d42acfc523441468f2ac28c6f.tar.gz micropython-5fd042e7d1610b4d42acfc523441468f2ac28c6f.zip |
all: Replace all uses of umodule in Python code.
Applies to drivers/examples/extmod/port-modules/tools.
This work was funded through GitHub Sponsors.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'examples/unix/machine_bios.py')
-rw-r--r-- | examples/unix/machine_bios.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/unix/machine_bios.py b/examples/unix/machine_bios.py index 878f3fd8f3..40aae4ccef 100644 --- a/examples/unix/machine_bios.py +++ b/examples/unix/machine_bios.py @@ -4,6 +4,6 @@ # It is expected to print 0xaa55, which is a signature at the start of # Video BIOS. -import umachine as machine +import machine print(hex(machine.mem16[0xC0000])) |