svofski
svofski
Datasheet: http://rtellason.com/chipdata/sn74ls384.pdf
Some samples are slightly rough around the corners. I think they can be made a little bit more self-descriptive. Here's clean up of f4-discovery usb_cdcacm sample. Things modified: - Named...
This is probably a grey area, but it's different to gcc. ``` #include int test_switch(int value) { switch (value) { case -1: case 1: return 1; } return 0; }...
You can install Google GBoard, but you can't enable it via settings. To enable it, use this command: ``` adb shell settings put secure default_input_method com.google.android.inputmethod.latin/com.android.inputmethod.latin.LatinIME ```
This may be useful to someone who needs to shift out data low significant bit first. Note that this is not about LSB/MSB byte order, which is already supported. ```...
Please excuse my ignorance, but what should be in "coreutil" subdirectory in the sources? It seems to be an important part of the project, referenced a few times in the...
the following example fails: MAX_NESTED_LEVEL equ 10 ds MAX_NESTED_LEVEL * 3 expected: 30 bytes reserved
``lxi d,13*256+16`` should highlight 13*256+16 on mouseover and show its value same for ``lxi h, label+1``
on windows it may be useful to launch the emulator without console
1. open debugger 2. pause, set breakpoint 3. hover mouse over breakpoint in the breakpoint pane expected: a healthy, ruddy tooltip actual: tooltip is flashing, sometimes not appearing at all