Category: memory
memcmp is a standard library function in C and C++ that compares two blocks of memory byte by byte. It’s declared in the header in C++ and the <string.h> …
In 2003, I took the college entrance exam and then spent the summer in Beijing. In September, I enrolled at the International College at Beijing (ICB) of China Agricultural …
A simple C/C++ calling Python script to import numpy package will simply be reported Leaking Memory: include <Python.h> int main() { Py_Initialize(); PyRun_SimpleString("import numpy"); Py_Finalize(); return 0; } This …
C# is a managed programming language which means everything by default (or 90% of time), everything is properly managed by the GC (Garbage Collector), you don’t have to worry …
March 15, 2014
6502, 8 bit, assembly language, beginner, code, code library, console, famicom, hardware, implementation, memory, programming languages, tools / utilities
On 8-bit BBG Famicom clone, you can write assembly program and use basm.cmd (the BBG assembler) to compile into *.cmd executables. The hot boot (similar to Ctrl+Alt+Del or pressing …