Search found 51 matches

by rhyde
Sat Oct 12, 2024 4:17 am
Forum: Art of ARM Assembly
Topic: Art Of ARM Assembly, editing complete
Replies: 0
Views: 77

Art Of ARM Assembly, editing complete

Hi all, I finally did the last pass on the Art of ARM Assembly (10/8/2024). Expect publication (in freeware form) in January 2025. In the meantime, you can preorder the book and the the electronic preview from No Starch Press (https://nostarch.com/art-arm-assembly-volume-1) You can also download ...
by rhyde
Wed Sep 04, 2024 9:26 pm
Forum: Blog
Topic: Barnes & Noble Art of ARM Assembly Promo
Replies: 0
Views: 111

Barnes & Noble Art of ARM Assembly Promo

Barnes & Noble is currently running another sale for 25% off pre-order titles - including Art of ARM Assembly - this week, starting today (runs Sept. 4-6). Here's the product page on their site: https://www.barnesandnoble.com/w/the-art-of-arm-assembly-randall-hyde/1143843472?ean=9781718502826 The ...
by rhyde
Tue May 14, 2024 4:29 pm
Forum: ARM Assembly Language
Topic: 32-bit double-precision float-to-string
Replies: 0
Views: 499

32-bit double-precision float-to-string

Here is a sample program (from "The Art of ARM Assembly, Volume 2") that converts a 64-bit double-precision floating-point value to a string. This code was created and tested on a Pi 400 using a 32-bit version of PiOS. It easily ports to Cortex-M7F CPUs (e.g., the Teensy 4.x) and other 32-bit based ...
by rhyde
Tue May 14, 2024 4:24 pm
Forum: Art of 64-Bit Assembly
Topic: Double-precision to string
Replies: 0
Views: 970

Double-precision to string

Recently I've been working on sample programs for "The Art of ARM Assembly, Volume 2." When working on the numeric conversion examples, I chose not to simply copy the algorithms I used in "The Art of 64-bit Assembly" and "The Art of ARM Assembly, Volume 1." Instead, I experimented with some new ...
by rhyde
Fri Apr 19, 2024 7:26 pm
Forum: Blog
Topic: Art of ARM Assembly, Preorder
Replies: 1
Views: 780

Re: Art of ARM Assembly, Preorder

25% Off Pre-orders for Barnes & Noble Members Premium Members Get an Additional 10% Off their Preorders It’s that time again! We are offering Barnes & Noble Premium & Rewards Members 25% off all pre-orders from April 17 through 19, including audiobooks and eBooks! Premium Members get an additional 1 ...
by rhyde
Fri Apr 19, 2024 7:25 pm
Forum: Blog
Topic: Art of ARM Assembly, Preorder
Replies: 1
Views: 780

Art of ARM Assembly, Preorder

Barnes & Noble is currently running a 25% off pre-order event, which includes The Art of ARM Assembly: https://www.barnesandnoble.com/w/the-art-of-arm-assembly-randall-hyde/1143843472?ean=9781718502826. Promotion ends April 20 at 2:59am ET. The book is still in the copy-editing stage, should be ...
by rhyde
Tue Apr 09, 2024 5:58 pm
Forum: Write Great Code
Topic: Formal design tools in WGC4?
Replies: 1
Views: 632

Re: Formal design tools in WGC4?

The short answer is no.
I am loathe to discuss specific tools in WGC(4) because tools come and go (fall in and out of favor) and it becomes a real nightmare maintaining such books.

WGC4 will cover generic design stuff (both old-school and OOPs).
Cheers,
Randy Hyde
by rhyde
Thu Feb 29, 2024 8:56 pm
Forum: Blog
Topic: Sometimes bigger is not always better...
Replies: 0
Views: 693

Sometimes bigger is not always better...

I have recently (2/29/2024) been working on code for a book I'm working on (Art of ARM Assembly, Volume 2). One of the chapters deals with numeric-string-to-integer conversion. I'd banged out the usual "fetch a char, test it to see if it's a digit, multiply an accumulator by ten, and add in the ...
by rhyde
Wed Feb 28, 2024 10:07 pm
Forum: Registration
Topic: No login names with lots of periods
Replies: 0
Views: 783

No login names with lots of periods

Nothing spells spambot to me like seeing a login name of the form "r.a.n.d.a.l.l.h.y.d.e@somesite.com". I immediately delete such registration requests. If you have a real login name of this form, be sure to create a login name that eliminates most (if not all) of the periods, e.g., "randall.hyde ...
by rhyde
Wed Feb 28, 2024 9:53 pm
Forum: ARM Assembly Language
Topic: Fast digit count (integer log10)
Replies: 0
Views: 717

Fast digit count (integer log10)

Attached are a couple of functions that quickly count the number of decimal digits in an integer (32- and 64-bit versions).
Cheers,
Randy Hyde