MSI A520M-PRO AMD AM4 MATX Gaming Motherboard - MSI | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
MSI

MSI A520M-PRO AMD AM4 MATX Gaming Motherboard

SKU: A520M-PRO
R 1 399.00
In Stock

MSI PRO Series motherboards are designed to satisfy any professional workflow. Elevate your listening pleasure and enjoy extreme sound quality. Moreover, with years of experience in creating performance-enhancing tools that are easy to use, only the highest quality applications are at your...

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

Frequently Bought Together

MSI PRO Series motherboards are designed to satisfy any professional workflow. Elevate your listening pleasure and enjoy extreme sound quality. Moreover, with years of experience in creating performance-enhancing tools that are easy to use, only the highest quality applications are at your disposal. The extensive features let you fine-tune your system to deliver reliable maximum performance. Stay connected with Intel® LAN, optimized for stable internet throughput ideal for championship-level online plays.

MSI conducts thorough memory testing with the most popular memory brands under extreme conditions to ensure your system runs stable no matter what. Our memory partners include brands like Corsair, Crucial, Kingston, G.Skill and many more to optimize memory modules and configurations.

FEATURES:

  • Supports AMD Ryzen™ 5000 Series, 5000 G-Series, 4000 G-Series, 3000 Series and 3000 G-Series processors
  • Supports DDR4 Memory, up to 4600(OC) MHz
  • Turbo M.2: Running at PCI-E Gen3 x4 maximizes performance for NVMe based SSDs
  • Core Boost: With premium layout and digital power design to support more cores and provide better performance.
  • DDR4 Boost: Advanced technology to deliver pure data signals for the best performance and stability.
  • 2oz Thickened Copper PCB: An enhanced PCB design improves heat dissipation and performance reliability.
  • Audio Boost: Reward your ears with studio-grade sound quality

SPECIFICATIONS:

  • Socket: AMD Socket AM4
  • CPU (Max Support): Supports AMD Ryzen™ 5000 Series, 5000 G-Series, 4000 G-Series, 3000 Series and 3000 G-Series process
  • Chipset: AMD® A520 Chipset
  • DDR4 Memory: Supports DDR4 1866/ 2133/ 2400/ 2667/ 2800/ 2933/ 3000/ 3066/ 3200 MHz by JEDEC - Supports DDR4 2667/ 2800 /2933 /3000 /3066 /3200 /3466 /3600/ 3733 /3866 /4000 /4133 /4266 /4400/ 4600+ MHz by A-XMP OC Mode
  • Memory Channel: Dual
  • DIMM Slots: 2
  • Max Memory (GB): 64
  • PCI-E x16: 1
  • PCI-E GEN: Gen3
  • PCI-E x1: 2
  • SATAIII: 4
  • M.2 Slot: 1
  • TPM (Header): 1
  • RAID: 0/1/10
  • LAN: Realtek® RTL8111H Gigabit LAN
  • USB 3.2 ports (Front): 2(Gen 1, Type A)
  • USB 3.2 ports (Rear): 4(Gen 1, Type A)
  • USB 2.0 ports (Front): 4
  • USB 2.0 ports (Rear): 2(Type A)
  • Serial Ports(Front): 1
  • Audio ports (Rear): Realtek® ALC892/ALC897 Codec
  • DisplayPort: 1
  • HDMI: 1
  • VGA: 1
  • DirectX: 12
  • Form Factor: M-ATX
  • Operating System: Support for Windows® 10 64-bit

WHAT'S IN THE BOX:

  • MSI A520M PRO AM4 mATX Motherboard - Black x1
  • SATA cables x2
  • I/O Shield x1
  • Driver DVD x1
  • Quick Install Guide x1
Brand MSI
Colour -
Form Factor M-ATX
Interface -
Capacity -
Memory Capacity 64GB
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket AM4
Warranty 36 Months
0.0
0 reviews
Login to Review

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

Related Products

Asus PRIME B550M-K ARGB AM4 M-ATX Motherboard
ASUS

Asus PRIME B550M-K ARGB AM4 M-ATX Motherboard

R 1 999.00

In Stock

Asus PRIME B840M-A-CSM AM5 Micro ATX Motherboard
ASUS

Asus PRIME B840M-A-CSM AM5 Micro ATX Motherboard

R 2 399.00

In Stock

MSI A620M-E PRO AMD AM5 MATX Gaming Motherboard
MSI

MSI A620M-E PRO AMD AM5 MATX Gaming Motherboard

R 1 849.00

Out of Stock

MSI B450M-APRO MAX II AMD AM4 MATX Gaming Motherboard
MSI

MSI B450M-APRO MAX II AMD AM4 MATX Gaming Motherboard

R 1 399.00

Out of Stock

// 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!