BLUE
JNjames3neal.bsky.social

Enjoying #AnxhorNets2024 ... The Schools, Health & Libraries Broadband Coalition (SHLB) conference is always excellent.

1
MLmartinlaetzel.bsky.social

Wir werfen mit Herrn Prof. Dr. Hochscherf in unserer Oktober-Ausgabe des #SHLB-Webcasts „KultDig"-Lunch am 21. Oktober 2024 in der Zeit von 12:00-13:00 Uhr einen Blick auf das vergangene Jahr. Was hat sich seitdem getan? Anmeldung per E-Mail bis zum 16.10.2024 an: Datenmanagement@shlb.landsh.de

0
awaaay91.bsky.social

Já decidi minha fav do album 😌 🎶 Super Junior D&E - 'Only You' 🎧 music.youtube.com/watch?v=SHlB...#musicsky#nowplaying

Only You
Only You

YouTube video by SUPER JUNIOR-D&E - Topic

1
kissa.bsky.social

Here's the whole set of immediate instructions. This makes me reconsider the design, not only because of the effort of testing all of that stuff but also because I don't want to type "SHLAB" when I just want to do a 1-bit left shift. Maybe it's time to write some programs first and reconsider this.

Previous picture, plus new stuff (8-bit immediate instructions)

// If bit 6 (immediate mode) is set, bit 7 sets "byte mode"
//
// Instruction names are postfixed with "b" for immediate.
// Arithmetic instructions with 8-bit immediate operand (96-111):
//
// addb op1, op2, imm8 ; op1 <- op2 + imm8     01100000
// subb
// mulb
// divb
// modb
// andb
// orb
// xorb
// shlb
// shrb
// add1b
// sub1b
// movb
//
// // Arithmetic instructions with 8-bit immediate operand, augmented assignment
// (112-127):
//
// addab op1, imm8     ; op1 <- op2 + imm8     01110000
// subab
// mulab
// divab
// modab
// andab
// orab
// xorab
// shlab
// shrab
// incab
// decab
// nopab
1