AMD RYZEN 7 9800X3D 8-Core 4.7GHz AM5 CPU - AMD | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
AMD

AMD RYZEN 7 9800X3D 8-Core 4.7GHz AM5 CPU

SKU: 100-100001084WOF
R 10 139.00
In Stock

Introducing one of the world’s most advanced gaming desktop processors, the AMD Ryzen™ 7 9800X3D Series processor, now with AMD 3D V-Cache™ technology to push your gaming to new frontiers. Boosted by AMD’s advanced “Zen 5” architecture and 4nm technology, you’ll feel unmatched power...

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

Introducing one of the world’s most advanced gaming desktop processors, the AMD Ryzen™ 7 9800X3D Series processor, now with AMD 3D V-Cache™ technology to push your gaming to new frontiers. Boosted by AMD’s advanced “Zen 5” architecture and 4nm technology, you’ll feel unmatched power in every moment of high-performance gaming.

AMD Ryzen™7 9800X3D Series processors are built with exclusive AMD 3D V-Cache™ technology, enabling the largest on-chip memory available in its class: 104 Megabytes. You’ll feel insane performance on any game with AMD EXPO™ technology, designed for increased frequencies to unlock higher and smoother frame rates.

The AMD Ryzen™ 7 9800X3D Series processor is made with gamers in mind. It’s designed for the AM5 platform, enabled with the fastest DDR5 memory speeds, and equipped with PCIe® 5.0 for incredible bandwidth. This long-life platform evolves alongside the most demanding games and next-gen processors so you can upgrade your game quickly and easily.

Unlock the potential of your PC with AI-ready AMD Ryzen™ processors. Bring incredible speed to every element of your rig, including productivity and content creation, with built-in AI acceleration and enhanced AI capabilities.

 FEATURES:

  • Boost Clock up to 5.2GHz
  • 8 Cores / 16 Threads
  • Latest AM5 Platform
  • PCIe 5.0 and DDR5 Support
  • AMD 3D V-Cache™ Technology
  • AMD Radeon™ Graphics
  • AMD EXPO™ Technology
  • AMD Ryzen™ Technologies

SPECIFICATIONS:

  • Platform: Desktop
  • Product Line: AMD Ryzen™ 7 Processors
  • # of CPU Cores: 8
  • # of Threads: 16
  • Max. Boost Clock: Up to 5.2GHz
  • Base Clock: 4.7GHz
  • Graphics Model: AMD Radeon™ Graphics
  • Graphics Core Count: 2
  • Graphics Frequency: 2200 MHz
  • L1 Cache: 640KB
  • L2 Cache: 8MB
  • L3 Cache: 96MB
  • Default TDP: 120W
  • Processor Technology for CPU Cores: TSMC 4nm FinFET
  • Unlocked for Overclocking: Yes
  • CPU Socket: AM5
  • Thermal Solution (PIB): None
  • Recommended Cooler: Liquid cooler recommended for optimal performance
  • Max. Operating Temperature (Tjmax): 95°C
  • OS Support: Windows 11 - 64-Bit Edition, Windows 10 - 64-Bit Edition, RHEL x86 64-Bit, Ubuntu x86 64-Bit (Operating System (OS) support will vary by manufacturer.)

 WHAT'S IN THE BOX:

  • AMD RYZEN 7 9800X3D 8-Core 4.7GHz AM5 CPU x1
Brand AMD
Colour Grey
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 36 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

AMD Ryzen 7 9850X3D 8-Core 4.7GHz AM5 CPU
AMD

AMD Ryzen 7 9850X3D 8-Core 4.7GHz AM5 CPU

R 11 209.00

In Stock

AMD RYZEN 5 7600X 6-Core 4.7GHz AM5 CPU
AMD

AMD RYZEN 5 7600X 6-Core 4.7GHz AM5 CPU

R 4 599.00

Only 1 left - order soon!

AMD RYZEN 9 5900XT 16-Core 3.3GHZ AM4 CPU
AMD

AMD RYZEN 9 5900XT 16-Core 3.3GHZ AM4 CPU

R 6 939.00

Out of Stock

AMD RYZEN 9 9950X 16-Core 4.3GHz AM5 CPU
AMD

AMD RYZEN 9 9950X 16-Core 4.3GHz AM5 CPU

R 12 599.00

Only 1 left - order soon!

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!